Click or drag to resize

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
Syntax
short ColorIndex { get; set; }

Property Value

Type: Int16
Integer – the colours numeric value
Examples

Show ColorIndex

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

VB
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