Sdílet prostřednictvím


AccessText.TextWrapping Vlastnost

Definice

Získá nebo nastaví, zda textový obsah AccessText prvku je zabalen, pokud přeteče řádkové pole.

public:
 property System::Windows::TextWrapping TextWrapping { System::Windows::TextWrapping get(); void set(System::Windows::TextWrapping value); };
public System.Windows.TextWrapping TextWrapping { get; set; }
member this.TextWrapping : System.Windows.TextWrapping with get, set
Public Property TextWrapping As TextWrapping

Hodnota vlastnosti

TextWrapping

Chování obtékání, které se má použít. Výchozí formát je NoWrap.

Příklady

Následující příklad používá TextWrapping vlastnost AccessText k vytvoření víceřádkového popisku.

<TextBox Name="textBox1" Width="50" Height="20"/>
<Label Width="200" HorizontalAlignment="Left"
       Target="{Binding ElementName=textBox1}">
  <AccessText TextWrapping="WrapWithOverflow">
    _Another long piece of text that requires text wrapping
    goes here.
  </AccessText>
</Label>

Poznámky

Informace o vlastnosti závislosti

Pole identifikátoru TextWrappingProperty
Vlastnosti metadat nastavené na true AffectsMeasure, AffectsRender

Platí pro

Viz také