ALFA.Database.ACR_GetPersistentLocation C# (CSharp) Метод

ACR_GetPersistentLocation() публичный Метод

Retrieve a location from the persistent store.
public ACR_GetPersistentLocation ( UInt32 Object, string VarName ) : NWScript.NWScriptEngineStructure2
Object System.UInt32 Supplies the object whose persistent store is /// to be accessed.
VarName string Supplies the variable keyword to query.
Результат NWScript.NWScriptEngineStructure2
        public NWLocation ACR_GetPersistentLocation(UInt32 Object, string VarName)
        {
            string Data = ACR_GetPersistentString(Object, VarName);

            return ACR_StringToLocation(Data);
        }