Gets or sets the header message of 'idle' state.
Namespace: ZsZ_Studio.ControlsAssembly: SQL.Connection.Control (in SQL.Connection.Control.dll) Version: 1.0.4947.20663 (1.0.0.0)
public string MessageIdle { get; set; }
public string MessageIdle { get; set; }
Public Property MessageIdle As String
Get
Set
Public Property MessageIdle As String
Get
Set
public:
property String^ MessageIdle {
String^ get ();
void set (String^ value);
}
public:
property String^ MessageIdle {
String^ get ();
void set (String^ value);
}
Property Value
Type:
StringUse the
SQLConnectionControlColors class to define header colors.
(VB.NET) This sample shows how to set the default header messages of different states.
Dim scc As New ZsZ_Studio.Controls.SQLConnectionControl
scc.Location = New Point(10, 10)
scc.MessageConnected = "CONNECTED"
scc.MessageDisconnected = "DISCONNECTED"
scc.MessageIdle = "IDLE"
Me.Controls.Add(scc)
Dim scc As New ZsZ_Studio.Controls.SQLConnectionControl
scc.Location = New Point(10, 10)
scc.MessageConnected = "CONNECTED"
scc.MessageDisconnected = "DISCONNECTED"
scc.MessageIdle = "IDLE"
Me.Controls.Add(scc)