QEStatusBarManager.TransitionIntoOnlineMode Method

Definition

Transitions into the Online mode.

Overloads

TransitionIntoOnlineMode(String, String)

Ensures that the status bar is in online mode, transitions into it if needed, and updates information applicable to such mode.

TransitionIntoOnlineMode(String, String, Int32, Int32)

Ensure that the status bar is in online mode, transitions into it if needed, and updates information applicable to such mode.

TransitionIntoOnlineMode(String, String, Int32, Int32, Boolean, Color)

Ensure that the status bar is in online mode, transitions into it if needed, and updates information applicable to such mode.

TransitionIntoOnlineMode(String, String)

Ensures that the status bar is in online mode, transitions into it if needed, and updates information applicable to such mode.

public:
 void TransitionIntoOnlineMode(System::String ^ serverNameText, System::String ^ userNameText);
public void TransitionIntoOnlineMode (string serverNameText, string userNameText);
member this.TransitionIntoOnlineMode : string * string -> unit
Public Sub TransitionIntoOnlineMode (serverNameText As String, userNameText As String)

Parameters

serverNameText
String

A string value that specifies the name of the server.

userNameText
String

A string value that specifies the name of the user.

Applies to

TransitionIntoOnlineMode(String, String, Int32, Int32)

Ensure that the status bar is in online mode, transitions into it if needed, and updates information applicable to such mode.

public:
 void TransitionIntoOnlineMode(System::String ^ serverNameText, System::String ^ userNameText, int openConnectionCount, int totalConnectionCount);
public void TransitionIntoOnlineMode (string serverNameText, string userNameText, int openConnectionCount, int totalConnectionCount);
member this.TransitionIntoOnlineMode : string * string * int * int -> unit
Public Sub TransitionIntoOnlineMode (serverNameText As String, userNameText As String, openConnectionCount As Integer, totalConnectionCount As Integer)

Parameters

serverNameText
String

A string value that specifies the name of the server (group).

userNameText
String

A string value that specifies the name of the user.

openConnectionCount
Int32

An integer value that specifies the number of open connections.

totalConnectionCount
Int32

An integer value that specifies the total number of connections.

Applies to

TransitionIntoOnlineMode(String, String, Int32, Int32, Boolean, Color)

Ensure that the status bar is in online mode, transitions into it if needed, and updates information applicable to such mode.

public:
 void TransitionIntoOnlineMode(System::String ^ serverNameText, System::String ^ userNameText, int openConnectionCount, int totalConnectionCount, bool useCustomConnectionColor, System::Drawing::Color customConnectionColor);
public void TransitionIntoOnlineMode (string serverNameText, string userNameText, int openConnectionCount, int totalConnectionCount, bool useCustomConnectionColor, System.Drawing.Color customConnectionColor);
member this.TransitionIntoOnlineMode : string * string * int * int * bool * System.Drawing.Color -> unit
Public Sub TransitionIntoOnlineMode (serverNameText As String, userNameText As String, openConnectionCount As Integer, totalConnectionCount As Integer, useCustomConnectionColor As Boolean, customConnectionColor As Color)

Parameters

serverNameText
String

A string value that specifies the name of the server (group).

userNameText
String

A string value that specifies the name of the user.

openConnectionCount
Int32

An integer value that specifies the number of open connections.

totalConnectionCount
Int32

An integer value that specifies the number of connections

useCustomConnectionColor
Boolean

A Boolean value that specifies whether or not to use a custom connection color.

customConnectionColor
Color

A Color object that specifies the background color to use for this connection.

Applies to