IVsCompletionSet.GetInitialExtent, méthode
Détermine où afficher la liste de jeu de saisies semi-automatiques dans l'éditeur.
Espace de noms : Microsoft.VisualStudio.TextManager.Interop
Assembly : Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)
Syntaxe
'Déclaration
Function GetInitialExtent ( _
<OutAttribute> ByRef piLine As Integer, _
<OutAttribute> ByRef piStartCol As Integer, _
<OutAttribute> ByRef piEndCol As Integer _
) As Integer
int GetInitialExtent(
out int piLine,
out int piStartCol,
out int piEndCol
)
int GetInitialExtent(
[OutAttribute] int% piLine,
[OutAttribute] int% piStartCol,
[OutAttribute] int% piEndCol
)
abstract GetInitialExtent :
piLine:int byref *
piStartCol:int byref *
piEndCol:int byref -> int
function GetInitialExtent(
piLine : int,
piStartCol : int,
piEndCol : int
) : int
Paramètres
piLine
Type : Int32%[] retourne le numéro de ligne des personnages qui ne doivent pas être masqués.
piStartCol
Type : Int32%[] retourne le numéro de colonne du premier personnage qui ne doit pas être masqué.
piEndCol
Type : Int32%[] retourne le dernier personnage dans l'étendue qui ne doit pas être masquée. Cela doit figurer sur la même ligne que piLine.
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 IVsCompletionSet::GetInitialExtent(
[out] long *piLine,
[out] long *piStartCol,
[out] long *piEndCol
);
Utilisez cette méthode pour demander à la vue où placer la zone d'achèvement. En spécifiant des valeurs pour piLine, piCol et piLen, vous indiquez une étendue de texte que la vue ne doit pas masquer à la zone d'achèvement. Si la valeur du paramètre d'piLen est définie à zéro, tandis une coordonnée d'ancre (piCol, piLine) doit être fournie.
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.