GrapeCity.ActiveReports.v11 アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > TextBox クラス : VerticalAlignment プロパティ |
'宣言 Public Property VerticalAlignment As VerticalTextAlignment
public VerticalTextAlignment VerticalAlignment {get; set;}
コントロールのテキストの垂直方向の配置を表すVerticalTextAlignment列挙値。デフォルトはVerticalTextAlignment.Topです。
private void detail_Format(object sender, System.EventArgs eArgs) { this.TextBox1.VerticalAlignment = VerticalTextAlignment.Top; }
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.TextBox1.VerticalAlignment = VerticalTextAlignment.Top End Sub