ISOrgMember.Name

Description

The name of the organisation node.

Syntax

object.Name

Part Attribute Type Description
object Required
The object always implements the ISOrgMember interface
Restriction: This property is readonly.

Return Value

string

Example

Display the name of the organisation node.

Dim aFilter
Dim aOrgMember
Dim aOrgMembers
Dim aMessage

Set aFilter = Profile.CreateOrgMembersFilter
set aOrgMembers = Profile.LoadOrgMembers(aFilter)

aMessage = "Org Nodes Count = " & aOrgMembers.Count
for each aOrgMember in aOrgMembers
  aMessage = aMessage & vbNewLine & "The name of the organisation node is " &_
    aOrgMember.Name 
next      

Profile.MsgBox(aMessage)         
Note:

In Profile Client v8 on User Interface Name can be found in Organisation > People & Places > Organisational Structure or in Organisation > People & Places > Organisational Structure > Open the selected node > General > Name field.

Version information

Added in v7.8.0