PowerTools CalendarGrid for Windows Forms 1.0J
TextVertical プロパティ
使用例 

テキストを縦に表示するかどうかを示す値を取得または設定します。
構文
Public Property TextVertical As CalendarGridTriState
public CalendarGridTriState TextVertical {get; set;}

プロパティ値

CalendarGridTriState 値の 1 つ。既定値は CalendarGridTriState.Inherit です。
使用例
次のサンプルコードは、このプロパティを使用してセルの外観をカスタマイズする方法を示します。このサンプルコードは、CalendarCellStyle クラスに示されている詳細なコード例の一部を抜粋したものです。
private void SetTextProperty()
{         
    this.gcCalendarGrid1.Template.Content.GetCell(1, 0).Value = "SampleText";
    this.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.UseCompatibleTextRendering = CalendarGridTriState.True;
    this.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.TextAngle = 60;
    this.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.TextVertical = CalendarGridTriState.True;  
}
Private Sub SetTextProperty()
    Me.gcCalendarGrid1.Template.Content.GetCell(1, 0).Value = "SampleText"
    Me.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.UseCompatibleTextRendering = CalendarGridTriState.[True]
    Me.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.TextAngle = 60
    Me.gcCalendarGrid1.Template.Content.GetCell(1, 0).CellStyle.TextVertical = CalendarGridTriState.[True]
End Sub
参照

CalendarCellStyle クラス
CalendarCellStyle メンバ

 

 


© 2014 GrapeCity inc. All rights reserved.