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.
Converts local line coordinates to base coordinates.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function LocalLineIndexToBase ( _
iLocalLine As Integer, _
iLocalIndex As Integer, _
<OutAttribute> ByRef piBaseLine As Integer, _
<OutAttribute> ByRef piBaseIndex As Integer _
) As Integer
int LocalLineIndexToBase(
int iLocalLine,
int iLocalIndex,
out int piBaseLine,
out int piBaseIndex
)
int LocalLineIndexToBase(
[InAttribute] int iLocalLine,
[InAttribute] int iLocalIndex,
[OutAttribute] int% piBaseLine,
[OutAttribute] int% piBaseIndex
)
abstract LocalLineIndexToBase :
iLocalLine:int *
iLocalIndex:int *
piBaseLine:int byref *
piBaseIndex:int byref -> int
function LocalLineIndexToBase(
iLocalLine : int,
iLocalIndex : int,
piBaseLine : int,
piBaseIndex : int
) : int
Parameters
- iLocalLine
Type: System.Int32
[in] The local line.
- iLocalIndex
Type: System.Int32
[in] The local line character index.
- piBaseLine
Type: System.Int32%
[out] The base line.
- piBaseIndex
Type: System.Int32%
[out] The base line character index.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code The method returns VIEW_E_LOCATION_HIDDEN indicating that the coordinates you requested exist, but are hidden in the UI at present. The method returns E_INVALIDARG to indicate bad input parameters.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextLayer::LocalLineIndexToBase(
[in] long iLocalLine,
[in] CharIndex iLocalIndex,
[out] long *piBaseLine,
[out] CharIndex *piBaseIndex
);
.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.