Give Us a Call: +1-877-99-BOPUP

MultipleMessageStruct type

Specifies or retrieves information on instant message that is sent to multiple recipients.

Type MultipleMessageStruct     Key As String     Flags As MessageFlag     SenderName As String     MessageText As String     TextFont As String     TextSize As Long     TextStyle As TextStyle     TextColor As Long End Type

Members

Key
Contains a unique message key. This member is filled when IServerClientVBA::SendMulitpleMessage method returns a success result and can be used to identify the instant message in the application.
Flags
Array of bitwise flags that specify parameters of the message. This member can include one or more of the following values:
MessageFlag.MessageFlag_Urgent
Indicates high priority (urgent) message.
MessageFlag.MessageFlag_Confirmation
Indicates that the message requires recipient's confirmation.
SenderName
Contains the sender's account name. This member must contain current user's account name.
MessageText
Contains a text of the instant message.
TextFont
Contains a font family to display the text message. Set this member to empty string ("" or Empty) or use MessageText_DefaultFont constant for outgoing messages if you want to use Arial font by default. Otherwise specify any other font name present in the system. For example, Tahoma, Verdana, Times New Roman and others.
TextSize
Contains a font size to display the text message. Set this member to MessageText_DefaultSize constant to use default (-13) font size.
TextStyle
Contains a style of the message font. This member can inclulde one or more of the following bitwise flags:
TextStyle.TextStyle_Bold
Indicates bold font.
TextStyle.TextStyle_StyleItalic
Indicates italic font.
TextColor
Contains a font color to display the text message. Set this member to MessageText_DefaultColor constant or 0 value to use default black font color (RGB(0, 0, 0)).