IADsLocality Property Methods
The methods of the IADsLocality interface read and write the properties described in this topic. For more information, see Interface Property Methods.
Properties
-
Description
-
-
Access type: Read/write
-
Scripting data type: BSTR
-
// C++ method syntax HRESULT get_Description( [out] BSTR* pbstrDescription ); HRESULT put_Description( [in] BSTR bstrDescription );
Indicates the text that describes the locality.
-
-
LocalityName
-
-
Access type: Read/write
-
Scripting data type: BSTR
-
// C++ method syntax HRESULT get_LocalityName( [out] BSTR* pbstrLocalityName ); HRESULT put_LocalityName( [in] BSTR bstrLocalityName );
Indicates the name of the geographical region as represented by this locality object.
-
-
PostalAddress
-
-
Access type: Read/write
-
Scripting data type: BSTR
-
// C++ method syntax HRESULT get_PostalAddress( [out] BSTR* pbstrPostalAddress ); HRESULT put_PostalAddress( [in] BSTR bstrPostalAddress );
Indicates the main postal address of the locality.
-
-
SeeAlso
-
-
Access type: Read/write
-
Scripting data type: VARIANT
-
// C++ method syntax HRESULT get_SeeAlso( [out] VARIANT* pvSeeAlso ); HRESULT put_SeeAlso( [in] VARIANT vSeeAlso );
Indicates an array of ADsPath names of directory objects relevant to this object.
-
Examples
The following code example displays the locality data of a container object. It assumes that a locality object, named "myLocality", has been created for the container object and the properties have been set.
Dim dom As IADsContainer
Dim loc As IADsLocality
On Error GoTo Cleanup
Set dom = getObject("LDAP://adsrv1/dc=Fabrikam, dc=Com")
Set loc = dom.GetObject("locality","L=myLocality")
Debug.Print loc.Name
Debug.Print loc.LocalityName
Debug.Print loc.Description
Debug.Print loc.PostalAddress
Debug.Print loc.SeeAlso
Cleanup:
If (Err.Number<>0) Then
MsgBox("An error has occurred. " & Err.Number)
End If
Set dom = Nothing
Set loc = Nothing
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows Vista |
Minimum supported server |
Windows Server 2008 |
Header |
|
DLL |
|
IID |
IID_IADsLocality is defined as A05E03A2-EFFE-11CF-8ABC-00C04FD8D503 |