StatusBar::SetLineColumnCharacter Method (Int32, Int32, Int32)
Visual Studio 2015
Sets the text column and character indicators in the StatusBar .
Assembly: EnvDTE (in EnvDTE.dll)
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
Show: