Position Constructors
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.
Overloads
Position() |
Initializes a new instance of the Position class. |
Position(Int32, Int32) |
Initializes a new instance of the Position class. |
Position()
Initializes a new instance of the Position class.
public:
Position();
public Position ();
Public Sub New ()
Applies to
Position(Int32, Int32)
Initializes a new instance of the Position class.
public:
Position(int line, int character);
public Position (int line, int character);
new Microsoft.VisualStudio.LanguageServer.Protocol.Position : int * int -> Microsoft.VisualStudio.LanguageServer.Protocol.Position
Public Sub New (line As Integer, character As Integer)
Parameters
- line
- Int32
Line number.
- character
- Int32
Character number.