Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets the text column and character indicators in the StatusBar .
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
Sub SetLineColumnCharacter ( _
Line As Integer, _
Column As Integer, _
Character As Integer _
)
void SetLineColumnCharacter(
int Line,
int Column,
int Character
)
void SetLineColumnCharacter(
int Line,
int Column,
int Character
)
abstract SetLineColumnCharacter :
Line:int *
Column:int *
Character:int -> unit
function SetLineColumnCharacter(
Line : int,
Column : int,
Character : int
)
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.
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
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.