TextBox.TextWrapping 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.
Obtient ou définit la façon dont le saut de ligne se produit si une ligne de texte s’étend au-delà de la largeur disponible de la zone de texte.
public:
property TextWrapping TextWrapping { TextWrapping get(); void set(TextWrapping value); };
TextWrapping TextWrapping();
void TextWrapping(TextWrapping value);
public TextWrapping TextWrapping { get; set; }
var textWrapping = textBox.textWrapping;
textBox.textWrapping = textWrapping;
Public Property TextWrapping As TextWrapping
<TextBlock TextWrapping="Wrap"/>
-or-
<TextBlock TextWrapping="NoWrap"/>
Valeur de propriété
Une des valeurs TextWrapping . La valeur par défaut est NoWrap.
Exemples
L’exemple suivant montre comment utiliser la propriété TextWrapping dans XAML.
<StackPanel>
<TextBox Text="A text box that demonstrates TextWrapping, TextAlignment, MaxLength, and AcceptsReturn"
TextWrapping="Wrap" TextAlignment="Center"
MaxLength="500" AcceptsReturn="True"
Margin="20,20,0,0" Width="300" Height="50"/>
</StackPanel>
Remarques
TextBox et RichEditBox ne prennent pas en charge la valeur WrapWholeWords pour leurs propriétés TextWrapping . Si vous essayez d’utiliser WrapWholeWords comme valeur pour TextBox.TextWrapping ou RichEditBox.TextWrapping, une exception est levée.