IAppointmentColorIndex Property |
ColorIndex - used in Japan
From CRM 5 Release 5.5 you may set different colour schema on the different types of appointments.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntaxshort ColorIndex { get; set; }
Property ColorIndex As Short
Get
Set
Dim instance As IAppointment
Dim value As Short
value = instance.ColorIndex
instance.ColorIndex = value
property short ColorIndex {
short get ();
void set (short value);
}
Property Value
Type:
Int16Integer – the colours numeric value
ExamplesShow ColorIndex
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox "Current appointments ColorIndex: " & objSO.Currentappointment.colorIndex, vbInformation + vbOKOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also