Click or drag to resize

IProjectMemberType Property

Type Project member type is a list defined by the database administrator. E.g. Project manager, "Project secretary".

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
IListTextItem Type { get; set; }

Property Value

Type: IListTextItem
IListTextItem - A reference to the iListtextitem object
Examples

Type

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

This returns the text string that describes the project member type.

VB
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    projMemb = ObjSO.Database.GetProjectMember(1)
    msgbox "The projectmember Type: " & projMemb.Type.Text, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also