Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Returns the coordinates for the upper left corner of a particular line and column.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Public Overridable Function GetPointOfLineColumn ( _
iLine As Integer, _
iCol As Integer, _
<OutAttribute> ppt As POINT() _
) As Integer
'Usage
Dim instance As VsTextViewClass
Dim iLine As Integer
Dim iCol As Integer
Dim ppt As POINT()
Dim returnValue As Integer
returnValue = instance.GetPointOfLineColumn(iLine, _
iCol, ppt)
public virtual int GetPointOfLineColumn(
int iLine,
int iCol,
POINT[] ppt
)
public:
virtual int GetPointOfLineColumn(
[InAttribute] int iLine,
[InAttribute] int iCol,
[OutAttribute] array<POINT>^ ppt
)
abstract GetPointOfLineColumn :
iLine:int *
iCol:int *
ppt:POINT[] byref -> int
override GetPointOfLineColumn :
iLine:int *
iCol:int *
ppt:POINT[] byref -> int
public function GetPointOfLineColumn(
iLine : int,
iCol : int,
ppt : POINT[]
) : int
Parameters
- iLine
Type: System.Int32
[in] Integer containing the line index.
- iCol
Type: System.Int32
[in] Integer containing the column index. Viewcol coordinates may include virtual space.
- ppt
Type: array<Microsoft.VisualStudio.OLE.Interop.POINT[]
[out, retval] Structure defining the x- and y- coordinates of the upper left corner of the line. For more information, see POINT in the Platform SDK.
Return Value
Type: System.Int32
Implements
IVsTextView.GetPointOfLineColumn(Int32, Int32, array<POINT[])
.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.