| Platform SDK: Active Directory, ADSI, and Directory Services |
The property methods of the IADsLargeInteger interface get and set the properties described in the following table. For more information, see Interface Property Methods.
| Property | Description |
|---|---|
| HighPart
[Visual Basic] [C++] |
The high part of the integer. |
| LowPart
[Visual Basic] [C++] |
The low part of the integer. |
If largeInt is of the LargeInteger type, its value is specified by those of HighPart and LowPart according to the following formula:
largeInt = HighPart * 232 + LowPart
The following Visual Basic® code snippet sets a large integer to 43937327281.
Dim LI as New LargeInteger LI.HighPart = 10 LI.LowPart = 987654321