ALFA.Database.ACR_SetPersistentFloat C# (CSharp) Method

ACR_SetPersistentFloat() public method

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