PowerTools PlusPak for Windows Forms 8.0J
RokuyouFontScale プロパティ
使用例 

六曜のフォントサイズの比率を取得または設定します。
構文
Public Property RokuyouFontScale As Integer
public int RokuyouFontScale {get; set;}

プロパティ値

日付文字に対する六曜表記のフォントサイズの比率(パーセンテージ単位)です。有効範囲は1〜100です。デフォルトは60です。
例外
例外解説
System.ArgumentOutOfRangeExceptionRokuyouFontScale は 1 〜 100 の範囲にある必要があります。
使用例
次のサンプルコードは、カレンダーに六曜を表示する方法を示します。
Imports GrapeCity.Win.Calendar 
 
' カレンダーに"先勝"と"大安"の日を表示します。
GcCalendar1.ShowRokuyou = Rokuyous.Senshou Or Rokuyous.Taian

' 六曜を日付領域の下部に左揃えします。
GcCalendar1.RokuyouAlignment = RokuyouAlignment.BottomLeft
 
' 六曜の大きさを日付テキストの50%に設定します。
GcCalendar1.RokuyouFontScale = 50
using GrapeCity.Win.Calendar;
 
// カレンダーに"先勝"と"大安"の日を表示します。
gcCalendar1.ShowRokuyou = Rokuyous.Senshou | Rokuyous.Taian;

// 六曜を日付領域の下部に左揃えします。
gcCalendar1.RokuyouAlignment = RokuyouAlignment.BottomLeft;

// 六曜の大きさを日付テキストの50%に設定します。
gcCalendar1.RokuyouFontScale = 50;
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcCalendar クラス
GcCalendar メンバ

Send Feedback