IVsTextView.GetTextStream, méthode
Retourne un flux de données spécifié de texte dans une chaîne.
Espace de noms : Microsoft.VisualStudio.TextManager.Interop
Assembly : Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)
Syntaxe
'Déclaration
Function GetTextStream ( _
iTopLine As Integer, _
iTopCol As Integer, _
iBottomLine As Integer, _
iBottomCol As Integer, _
<OutAttribute> ByRef pbstrText As String _
) As Integer
int GetTextStream(
int iTopLine,
int iTopCol,
int iBottomLine,
int iBottomCol,
out string pbstrText
)
int GetTextStream(
[InAttribute] int iTopLine,
[InAttribute] int iTopCol,
[InAttribute] int iBottomLine,
[InAttribute] int iBottomCol,
[OutAttribute] String^% pbstrText
)
abstract GetTextStream :
iTopLine:int *
iTopCol:int *
iBottomLine:int *
iBottomCol:int *
pbstrText:string byref -> int
function GetTextStream(
iTopLine : int,
iTopCol : int,
iBottomLine : int,
iBottomCol : int,
pbstrText : String
) : int
Paramètres
iTopLine
Type : Int32[in] complétez l'index de ligne définissant le flux de texte.
iTopCol
Type : Int32[in] colonne de ligne de haut définissant le flux de texte. Les coordonnées de Viewcol peuvent comprendre l'espace virtuel.
iBottomLine
Type : Int32[in] index de ligne inférieure définissant le flux de texte.
iBottomCol
Type : Int32[in] colonne de ligne inférieure définissant le flux de texte. Les coordonnées de Viewcol peuvent comprendre l'espace virtuel.
pbstrText
Type : String%[out] pointeur à une chaîne contenant le texte.
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 IVsTextView::GetTextStream(
[in] long iTopLine,
[in] ViewCol iTopCol,
[in] long iBottomLine,
[in] ViewCol iBottomCol,
[out] BSTR * pbstrText
);
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.