StatusBar.SetLineColumnCharacter(Int32, Int32, Int32) Method

Definition

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

Line
Int32

Required. The line number to display in the StatusBar .

Column
Int32

Required. The column number to display in the StatusBar .

Character
Int32

Required. The character position number to display in the StatusBar.

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  

Applies to