PropertyObject.SetValUnsignedInteger64
- Aktualisiert2025-07-21
- 1 Minute(n) Lesezeit
PropertyObject.SetValUnsignedInteger64
Syntax
PropertyObject.SetValUnsignedInteger64( lookupString, options, newValue)
Purpose
Sets the unsigned 64-bit integer value of the property the lookupString parameter specifies.
Remarks
TestStand stores numeric values as double-precision, 64-bit floating-point values, signed 64-bit integer values, or unsigned 64-bit integer values.
Parameters
lookupString As String
[In] Pass an empty string to denote the PropertyObject to which the method applies, or pass the name of a subproperty within the PropertyObject. You can also pass lookup strings to this parameter.
options As Long
[In] Pass 0 to specify the default behavior, or pass one or more PropertyOptions constants. Use the bitwise-OR operator to specify multiple options.
newValue As unsigned long long
[In] Specifies the new value for the property.
Example
LabWindows/CVI: TS_PropertySetValUnsignedInteger64(propObj, &errorInfo, "Step.Limits.High", 18446744073709551615); Visual C++: propObj->SetValUnsignedInteger64("Step.Limits.High", 0, 18446744,073709551615);
See Also
PropertyObject.GetValUnsignedInteger64
PropertyObject.SetValUnsignedInteger64ByOffset
Thread Safety of the PropertyObject API and TestStand Variables