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

テキストの回転角度(度単位)を取得または設定します。
構文
Public Property TextAngle As Single
public float TextAngle {get; set;}

プロパティ値

テキストの回転角度(度単位)を表す System.Single 値。既定値は System.Single.NaN です。これは値が継承されることを意味します。
例外
例外解説
System.ArgumentOutOfRangeException指定された値が -90 より小さいか、90 を超えています。
使用例
次のサンプルコードは、このプロパティを使用してセルの外観をカスタマイズする方法を示します。このサンプルコードは、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.