StatusBar::SetLineColumnCharacter Method (Int32, Int32, Int32)

 

Sets the text column and character indicators in the StatusBar .

Namespace:   EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

void SetLineColumnCharacter(
	int Line,
	int Column,
	int Character
)

Parameters

Line
Type: System::Int32

Required. The line number to display in the StatusBar .

Column
Type: System::Int32

Required. The column number to display in the StatusBar .

Character
Type: System::Int32

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

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
Return to top
Show: