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
SyntaxIListTextItem Type { get; set; }
Property Type As IListTextItem
Get
Set
Dim instance As IProjectMember
Dim value As IListTextItem
value = instance.Type
instance.Type = value
property IListTextItem^ Type {
IListTextItem^ get ();
void set (IListTextItem^ value);
}
Property Value
Type:
IListTextItemIListTextItem - A reference to the iListtextitem object
ExamplesType
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.
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