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 * 2^32 + LowPart
The following Visual Basic code example sets a large integer to 43937327281.
Dim LI As New LargeInteger LI.HighPart = 10 LI.LowPart = 987654321
Client: Included in Windows XP and
Windows 2000 Professional.
Server: Included in Windows Server 2003 and
Windows 2000 Server.
Redistributable: Requires Active Directory Client Extension
on Windows NT 4.0 SP6a and Windows 95/98/Me.
Header: Declared in Iads.h.