PowerTools ActiveReports for .NET 11.0J
SelectionBullet プロパティ
使用例 

現在の選択内容に箇条書きスタイルが適用されているかどうかを表す値を取得または設定します。
構文
'宣言
 
Public Property SelectionBullet As Boolean
public bool SelectionBullet {get; set;}

プロパティ値

箇条書きスタイルが適用されている場合は、True、そうでなければ false

使用例
private void detail_Format(object sender, System.EventArgs eArgs)
{
    if (this.rtbActiveReport.Find("List") != -1)
    {
        this.rtbActiveReport.SelectionStart = this.rtbActiveReport.Find("List") + 5;
        this.rtbActiveReport.SelectionBullet = true;
    }
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    If Not Me.rtbActiveReport.Find("List") = -1 Then
        Me.rtbActiveReport.SelectionStart = Me.rtbActiveReport.Find("List") + 5
        Me.rtbActiveReport.SelectionBullet = True
    End If
End Sub
参照

関連項目

RichTextBox クラス
RichTextBox メンバ
BulletIndent プロパティ

 

 


©2003-2017 GrapeCity inc. All rights reserved.