StatusBar.SetLineColumnCharacter(Int32, Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the text column and character indicators in the StatusBar .
public:
void SetLineColumnCharacter(int Line, int Column, int Character);
public:
void SetLineColumnCharacter(int Line, int Column, int Character);
void SetLineColumnCharacter(int Line, int Column, int Character);
[System.Runtime.InteropServices.DispId(8)]
public void SetLineColumnCharacter (int Line, int Column, int Character);
[<System.Runtime.InteropServices.DispId(8)>]
abstract member SetLineColumnCharacter : int * int * int -> unit
Public Sub SetLineColumnCharacter (Line As Integer, Column As Integer, Character As Integer)
Parameters
- Attributes
Examples
Sub SetLineColumnCharacterExample()
Dim SBar As StatusBar
SBar = DTE.StatusBar
SBar.SetLineColumnCharacter(5, 6, 7)
MsgBox("Notice the new line, column, and character values.")
End Sub