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

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

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.
Результат void
        public void ACR_SetPersistentFloat(UInt32 Object, string VarName, float Value)
        {
            ACR_SetPersistentString(Object, VarName, Convert.ToString(Value));
        }