RemNavigationGetObjectIdByPath Method |
Namespace: Paperwork.Connect
public virtual a_GenericResult GetObjectIdByPath( string path )
public void GetObjectByPath()
{
String path = @"Test123";
a_GenericResult retval = p.rNavigation.GetObjectIdByPath(path);
if (retval.ErrorCode != 0)
throw new Exception(retval.Message);
else
Console.Write("Nesne No: " + retval.Result);
Console.ReadLine();
}