ALFA.Database.ACR_SetPersistentInt C# (CSharp) Method

ACR_SetPersistentInt() public method

Set an integer value in the persistent store.
public ACR_SetPersistentInt ( UInt32 Object, string VarName, int Value ) : void
Object System.UInt32 Supplies the object whose persistent store is /// to be accessed.
VarName string Supplies the variable keyword to set.
Value int Supplies the variable data.
return void
        public void ACR_SetPersistentInt(UInt32 Object, string VarName, int Value)
        {
            ACR_SetPersistentString(Object, VarName, Convert.ToString(Value));
        }