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

VBMultipleMessageStruct structure

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

Public Structure VBMultipleMessageStruct     Dim MessageKey As String     Dim MessageFlags As UInteger     Dim SenderName As String     Dim MessageText As String     Dim TextFont As String     Dim TextSize As Integer     Dim TextStyle As UInteger     Dim TextColor As UInteger End Structure

Members

MessageKey
Contains a unique message key. This member is filled when IServerClientVB::SendMulitpleMessage method returns a success result and can be used to identify the instant message in the application.
MessageFlags
Array of bitwise flags that specify parameters of the message. This member can include one or more of the following values:
VBMessageFlag.Urgent
Indicates high priority (urgent) message.
VBMessageFlag.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 String.Empty) 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 VBMessageFont.DefaultSize 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:
VBMessageFont.StyleBold
Indicates bold font.
VBMessageFont.StyleItalic
Indicates italic font.
TextColor
Contains a font color to display the text message. Set this member to VBMessageFont.DefaultColor to use default black font color (RGB(0, 0, 0) or 0 value).