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);
        }