Partager via


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.

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

Voir aussi

Référence

IVsTextLines Interface

Microsoft.VisualStudio.TextManager.Interop, espace de noms