TextBoxBase.WordWrap Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Çok satırlı metin kutusu denetiminin gerektiğinde sözcükleri otomatik olarak bir sonraki satırın başına kaydırıp kaydırmadığını gösterir.
public:
property bool WordWrap { bool get(); void set(bool value); };
public bool WordWrap { get; set; }
member this.WordWrap : bool with get, set
Public Property WordWrap As Boolean
Özellik Değeri
true
çok satırlı metin kutusu denetimi sözcükleri kaydırıyorsa; false
metin kutusu denetimi, kullanıcı denetimin sağ kenarından geçtiğinde otomatik olarak yatay olarak kaydırıldığında. Varsayılan değer: true
.
Örnekler
Aşağıdaki kod örneği, dikey kaydırma çubuklarıyla çok satırlı TextBox bir denetim oluşturmak için türetilmiş bir sınıf kullanırTextBox. Bu örnekte, çok satırlı metin kutusu denetiminin metin belgeleri oluşturmak için kullanışlı olmasını sağlamak için , AcceptsReturnve WordWrap özellikleri de kullanılırAcceptsTab.
public:
void CreateMyMultilineTextBox()
{
// Create an instance of a TextBox control.
TextBox^ textBox1 = gcnew TextBox;
// Set the Multiline property to true.
textBox1->Multiline = true;
// Add vertical scroll bars to the TextBox control.
textBox1->ScrollBars = ScrollBars::Vertical;
// Allow the RETURN key in the TextBox control.
textBox1->AcceptsReturn = true;
// Allow the TAB key to be entered in the TextBox control.
textBox1->AcceptsTab = true;
// Set WordWrap to true to allow text to wrap to the next line.
textBox1->WordWrap = true;
// Set the default text of the control.
textBox1->Text = "Welcome!" + Environment::NewLine + "Second Line";
}
public void CreateMyMultilineTextBox()
{
// Create an instance of a TextBox control.
TextBox textBox1 = new TextBox();
// Set the Multiline property to true.
textBox1.Multiline = true;
// Add vertical scroll bars to the TextBox control.
textBox1.ScrollBars = ScrollBars.Vertical;
// Allow the RETURN key in the TextBox control.
textBox1.AcceptsReturn = true;
// Allow the TAB key to be entered in the TextBox control.
textBox1.AcceptsTab = true;
// Set WordWrap to true to allow text to wrap to the next line.
textBox1.WordWrap = true;
// Set the default text of the control.
textBox1.Text = "Welcome!" + Environment.NewLine + "Second Line";
}
Public Sub CreateMyMultilineTextBox()
' Create an instance of a TextBox control.
Dim textBox1 As New TextBox()
' Set the Multiline property to true.
textBox1.Multiline = True
' Add vertical scroll bars to the TextBox control.
textBox1.ScrollBars = ScrollBars.Vertical
' Allow the RETURN key in the TextBox control.
textBox1.AcceptsReturn = True
' Allow the TAB key to be entered in the TextBox control.
textBox1.AcceptsTab = True
' Set WordWrap to true to allow text to wrap to the next line.
textBox1.WordWrap = True
' Set the default text of the control.
textBox1.Text = "Welcome!" & Environment.NewLine & "Second Line"
End Sub
Açıklamalar
Bu özellik olarak ayarlanırsa true
, özellik ayarı ne olursa olsun ScrollBars yatay kaydırma çubukları görüntülenmez.
Not
Türetilmiş sınıfında, denetimi içindeki metin, TextBoxözelliği olarak ayarlanmadığı HorizontalAlignment.Left
sürece bu özelliğin özellik ayarından bağımsız olarak TextAlign her zaman kaydırılır.