TextRange2.Lines[Int32, Int32] Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne le sous-ensemble de lignes de texte spécifié. En lecture seule.
public:
property Microsoft::Office::Core::TextRange2 ^ Lines[int, int] { Microsoft::Office::Core::TextRange2 ^ get(int Start, int Length); };
public Microsoft.Office.Core.TextRange2 Lines[int Start = -1, int Length = -1] { get; }
member this.Lines(int * int) : Microsoft.Office.Core.TextRange2
Public ReadOnly Property Lines(Optional Start As Integer = -1, Optional Length As Integer = -1) As TextRange2
Paramètres
- Start
- Int32
Première ligne de la plage renvoyée.
- Length
- Int32
Nombre de lignes à renvoyer.
Valeur de propriété
Remarques
Si et Start
Length
sont omis, la plage retournée commence par la première ligne et se termine par le dernier paragraphe de la plage spécifiée.
Si Start
est spécifié mais Length
omis, la plage retournée contient une ligne.
Si Length
est spécifié mais Start
omis, la plage retournée commence par la première ligne de la plage spécifiée.
Si Start
est supérieur au nombre de lignes dans le texte spécifié, la plage retournée commence par la dernière ligne de la plage spécifiée.
Si Length
est supérieur au nombre de lignes de la ligne de départ spécifiée à la fin du texte, la plage retournée contient toutes ces lignes.