RichTextBox.SelectionRightIndent Ö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.
Denetimin sağ kenarıyla RichTextBox geçerli ekleme noktasına seçilen veya eklenen metnin sağ kenarı arasındaki uzaklık (piksel cinsinden).
public:
property int SelectionRightIndent { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public int SelectionRightIndent { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.SelectionRightIndent : int with get, set
Public Property SelectionRightIndent As Integer
Özellik Değeri
Geçerli seçimin veya ekleme noktasının sağındaki piksel cinsinden girinti alanı.
- Öznitelikler
Örnekler
Aşağıdaki kod örneği, özelliğini kullanarak içinde RichTextBox sağ kenar boşluğu oluşturma işlemini SelectionRightIndent gösterir. Örnek, adlı richTextBox1
bir denetim içeren bir RichTextBox formunuz olmasını ve örnek kodun formun sınıfındaki bir olaydan çağrılmış olmasını gerektirir.
private:
void WriteIndentedTextToRichTextBox()
{
// Clear all text from the RichTextBox;
richTextBox1->Clear();
// Specify a 20 pixel right indent in all paragraphs.
richTextBox1->SelectionRightIndent = 20;
// Set the font for the text.
richTextBox1->Font = gcnew System::Drawing::Font( "Lucinda Console",12 );
// Set the text within the control.
richTextBox1->SelectedText = "All text is indented 20 pixels from the right edge of the RichTextBox.";
richTextBox1->SelectedText = "You can use this property with the SelectionIndent property to provide right and left margins.";
richTextBox1->SelectedText = "After this paragraph the indentation will end.\n\n";
// Remove all right indentation.
richTextBox1->SelectionRightIndent = 0;
richTextBox1->SelectedText = "This paragraph has no right indentation. All text should flow as normal.";
}
private void WriteIndentedTextToRichTextBox()
{
// Clear all text from the RichTextBox;
richTextBox1.Clear();
// Specify a 20 pixel right indent in all paragraphs.
richTextBox1.SelectionRightIndent = 20;
// Set the font for the text.
richTextBox1.Font = new Font("Lucinda Console", 12);
// Set the text within the control.
richTextBox1.SelectedText = "All text is indented 20 pixels from the right edge of the RichTextBox.";
richTextBox1.SelectedText = "You can use this property with the SelectionIndent property to provide right and left margins.";
richTextBox1.SelectedText = "After this paragraph the indentation will end.\n\n";
// Remove all right indentation.
richTextBox1.SelectionRightIndent = 0;
richTextBox1.SelectedText = "This paragraph has no right indentation. All text should flow as normal.";
}
Private Sub WriteIndentedTextToRichTextBox()
' Clear all text from the RichTextBox;
RichTextBox1.Clear()
' Set the font for the text.
RichTextBox1.Font = New Font("Lucinda Console", 12)
' Specify a 20 pixel right indent in all paragraphs.
RichTextBox1.SelectionRightIndent = 20
' Set the text within the control.
RichTextBox1.SelectedText = "All text is indented 20 pixels from the right edge of the RichTextBox."
RichTextBox1.SelectedText = "You can use this property with the SelectionIndent property to provide right and left margins."
RichTextBox1.SelectedText = "After this paragraph the indentation will end." + ControlChars.CrLf
' Remove all right indentation.
RichTextBox1.SelectionRightIndent = 0
RichTextBox1.SelectedText = "This paragraph has no right indentation. All text should flow as normal."
End Sub
Açıklamalar
Seçili metin yoksa, girinti ayarı ekleme noktasının görüntülendiği paragrafa ve ekleme noktasından sonra denetime yazılan tüm metne uygulanır. Girinti ayarı, özellik farklı bir değere değiştirilene veya ekleme noktası denetim içindeki farklı bir paragrafa taşınana kadar uygulanır.
Denetim içinde metin seçilirse, seçilen metin ve metin seçiminden sonra girilen tüm metinler bu özelliğin değerine uygulanır. Bu özelliği, belgesinde RichTextBoxyer alan paragrafları girintili yapmak için kullanabilirsiniz. Bu özelliği ile SelectionIndent birlikte kullanarak paragraflarda görüntülenen paragrafları oluşturabilirsiniz.
Denetimdeki paragraflar için asılı girinti oluşturmak için özelliğini kullanın SelectionHangingIndent .