| Visual Basic (Declaration) | |
|---|---|
Public Property SelectionFont As Font | |
| C# | |
|---|---|
public Font SelectionFont {get; set;} | |
Property Value
A System.Drawing.Font value that represents the font to apply to the current text selection.If the current text selection has more than one font specified, this property is a null reference (Nothing in Visual Basic).
| C# | Copy Code |
|---|---|
private void detail_Format(object sender, System.EventArgs eArgs) { if (this.rtbActiveReport.Find("footnote") != -1) { this.rtbActiveReport.SelectionStart = this.rtbActiveReport.Find("footnote"); this.rtbActiveReport.SelectionLength = 8; this.rtbActiveReport.SelectionCharOffset = .05f; this.rtbActiveReport.SelectionFont = new System.Drawing.Font("Tahoma", 8, System.Drawing.FontStyle.Italic); } } | |
| Visual Basic | Copy Code |
|---|---|
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format If Not Me.rtbActiveReport.Find("footnote") = -1 Then Me.rtbActiveReport.SelectionStart = Me.rtbActiveReport.Find("footnote") Me.rtbActiveReport.SelectionLength = 8 Me.rtbActiveReport.SelectionCharOffset = 0.05 Me.rtbActiveReport.SelectionFont = New System.Drawing.Font("Tahoma", 8, FontStyle.Italic) End If End Sub | |