ITreeNode2.SafeChildren (METH) ¶ METHOD SafeChildren : COLLECTION_ERROR Returns an thread safe iterator over all elements. InOut: Scope Name Type Return SafeChildren COLLECTION_ERROR Input itfIterator ISafeLinkedListIterator
IBoolElement.BoolValue (PROP) ¶ PROPERTY BoolValue : BOOL Returns the value of the element.
IDintElement.DintValue (PROP) ¶ PROPERTY DintValue : DINT Returns the value of the element.
IElement.ElementEquals (METH) ¶ METHOD ElementEquals : BOOL Returns true of this element and itfElement are equal. This method will be called from the function block HashTable to find an element by key if the hashcode of an element collides with an other element. IMPORTANT: The underlying value to be compared with MUST NOT be changed during the lifecycle of the object. InOut: Scope Name Type Comment Return ElementEquals BOOL Input itfElement IElement The element to compare
IElement.ElementHashCode (METH) ¶ METHOD ElementHashCode : LINT Returns the hashcode of this element. This method is used by hash based collections (e.g. Hashtable ) to get the hashcode from a element. IMPORTANT: The value of the method MUST NOT be changed during the lifecycle of the object. InOut: Scope Name Type Return ElementHashCode LINT
IIntElement.IntValue (PROP) ¶ PROPERTY IntValue : INT Returns the value of the element.
ILintElement.LintValue (PROP) ¶ PROPERTY LintValue : LINT Returns the value of the element.
FloatingPointUtils Library Documentation ¶ Company System Title FloatingPointUtils Version 3.5.17.0 Categories Intern|Utils Namespace FPU Author None Placeholder FloatingPointUtils Description 1 ¶ Helper functions for REAL and LREAL numbers. Contents: ¶ ESpecial_FP_Value (Enum) Functions Ceil (Function) CeilF (Function) Floor (Function) FloorF (Function) Truncate (Function) TruncateF (Function) HexReal DeserializeHexReal (Function) SerializeHexReal (Function) LREAL GetLRealSpecialVal (Function) IsLRealNaN (Function) IsLRealNegInfinity (Function) IsLRealNumber (Function) IsLRealPosInfinity (Function) REAL GetRealSpecialVal (Function) IsRealNaN (Function) IsRealNegInfinity (Function) IsRealNumber (Function) IsRealPosInfinity (Function) StringFunctions HexStrToLReal (Function) HexStrToReal (Function) LRealToHexStr (Function) LRealToStr (Function) RealToHexStr (Function) RealToStr (Function) StrToLReal (Function) StrToReal (Function) Indices and tables ¶ 1 Based on FloatingPointUtils.library, last modified 20.04.2021, 15:17:29. LibDoc 4.4.0.0-b.27 The content file FloatingPointUtils.clean.json was generated with CODESYS V3.5 SP16 Patch 3 on 20.04.2021, 15:17:29.
ESpecial_FP_Value (ENUM) ¶ TYPE ESpecial_FP_Value : Enumeration of special floating point values InOut: Name Initial Comment NaN 0 A (quiet) NaN PosInf 1 Positive infinity NegInf 2 Negative infinity Eps 3 Smallest positive number MaxVal 4 The maximum representable value MinVal 5 The minimum representable value
Functions ¶ Ceil (Function) CeilF (Function) Floor (Function) FloorF (Function) Truncate (Function) TruncateF (Function)