IVsTextLines.GetLineDataEx, méthode
Fournit l'accès direct et au niveau de la ligne à la mémoire tampon de texte.
Espace de noms : Microsoft.VisualStudio.TextManager.Interop
Assembly : Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)
Syntaxe
'Déclaration
Function GetLineDataEx ( _
dwFlags As UInteger, _
iLine As Integer, _
iStartIndex As Integer, _
iEndIndex As Integer, _
<OutAttribute> pLineData As LINEDATAEX(), _
pMarkerData As MARKERDATA() _
) As Integer
int GetLineDataEx(
uint dwFlags,
int iLine,
int iStartIndex,
int iEndIndex,
LINEDATAEX[] pLineData,
MARKERDATA[] pMarkerData
)
int GetLineDataEx(
[InAttribute] unsigned int dwFlags,
[InAttribute] int iLine,
[InAttribute] int iStartIndex,
[InAttribute] int iEndIndex,
[OutAttribute] array<LINEDATAEX>^ pLineData,
[InAttribute] array<MARKERDATA>^ pMarkerData
)
abstract GetLineDataEx :
dwFlags:uint32 *
iLine:int *
iStartIndex:int *
iEndIndex:int *
pLineData:LINEDATAEX[] byref *
pMarkerData:MARKERDATA[] -> int
function GetLineDataEx(
dwFlags : uint,
iLine : int,
iStartIndex : int,
iEndIndex : int,
pLineData : LINEDATAEX[],
pMarkerData : MARKERDATA[]
) : int
Paramètres
dwFlags
Type : UInt32[in] marque d'un indicateur fournir les informations supplémentaires à propos de la ligne. Pour une liste de valeurs d'dwFlags, consultez l'GLDE_FLAGS.
iLine
Type : Int32[in] la ligne sur les informations sont demandées. C'est une valeur commençant par un.
iStartIndex
Type : Int32[in] démarrant l'index de caractère dans la ligne. Doit être inférieur ou égal à la longueur de la ligne. Cette valeur est ignorée à moins qu'une valeur d'gldeSubset soit spécifiée pour dwFlags.
iEndIndex
Type : Int32[in] index de caractère de fin dans la ligne. Doit être inférieur ou égal à la longueur de la ligne.
pLineData
Type : array<Microsoft.VisualStudio.TextManager.Interop.LINEDATAEX[][in, out] pointeur vers le remplir-dans la structure d'LINEDATA. Cela est alloué par l'appelant et rempli par la méthode d'GetLineDataEx.
pMarkerData
Type : array<Microsoft.VisualStudio.TextManager.Interop.MARKERDATA[]dans, [facultatif] pointeur à une structure valide d'MARKERDATA. Cela est alloué par l'appelant et rempli par la méthode d'GetLineDataEx.
Valeur de retour
Type : Int32
Si la méthode réussit, elle retourne S_OK.En cas d'échec, un code d'erreur est retourné.
Notes
Signature de COM
De textmgr.idl :
HRESULT IVsTextLines::GetLineDataEx(
[in] DWORD dwFlags,
[in] long iLine,
[in] long iStartIndex,
[in] long iEndIndex,
[out] LINEDATAEX *pLineData,
[in] MARKERDATA *pMarkerData
);
Cette méthode est similaire à l'GetLineData, mais complète en outre la structure d'MARKERDATA et vous permet pour spécifier les informations supplémentaires à propos de la ligne ou de la marque à l'aide de le paramètre d'dwFlags.
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.