PropertyObject.GetValUnsignedInteger64

Syntax

PropertyObject.GetValUnsignedInteger64( lookupString, options)

Return Value

unsigned long long

Unsigned 64-bit Integer value of the property.

Purpose

Returns the unsigned 64-bit integer value of the property the lookupString parameter specifies.

Note LabVIEW You cannot use this method in LabVIEW. Use the PropertyObject.GetValVariant method instead.

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.

Example

LabWindows/CVI:     unsigned long long highLimit;     TS_PropertyGetValUnsignedInteger64(propObj, &errorInfo, "",                             0, &highLimit); Visual C++:     unsigned long long highLimit;     highLimit = propObj->GetValUnsignedInteger64("", 0);

See Also

Lookup Strings

PropertyObject.GetValUnsignedInteger64ByOffset

PropertyObject.GetValVariant

PropertyObject.SetValUnsignedInteger64

PropertyOptions

Thread Safety of the PropertyObject API and TestStand Variables