GrapeCity CalendarGrid for Windows Forms 2.0J
UseCompatibleTextRendering プロパティ
使用例 

互換性のあるテキストレンダリングエンジン(GDI+)を使用するか、使用しないか(GDI を使用するか)を示す値を取得または設定します。
構文
Public Property UseCompatibleTextRendering As CalendarGridTriState
public CalendarGridTriState UseCompatibleTextRendering {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 メンバ

 

 


c 2008 GrapeCity inc. All rights reserved.