GrapeCity SPREAD for Windows Forms 11.0J
BackgroundImageLayout プロパティ (DropDownCalendar)


ドロップダウンカレンダーの背景画像の配置を取得または設定します。
構文
'Declaration
 
Public Property BackgroundImageLayout As ImageLayout
'使用法
 
Dim instance As DropDownCalendar
Dim value As ImageLayout
 
instance.BackgroundImageLayout = value
 
value = instance.BackgroundImageLayout
public ImageLayout BackgroundImageLayout {get; set;}

プロパティ値

背景画像のレイアウトを示す System.Windows.Forms.ImageLayout 値。
既定値は ImageLayout.Tile です。
解説
BackgroundImageLayoutプロパティは、コントロールに配置した画像の位置と動作を指定する場合に使用します。BackgroundImageLayoutは、BackgroundImageプロパティが設定されている場合にのみ有効です。大きな画像を使用した場合のパフォーマンスを向上させるには、BackgroundImageLayoutSystem.Windows.Forms.ImageLayout.Tile以外に設定します。
次のサンプルコードは、ドロップダウンカレンダーに背景画像を追加します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
inputcell.DropDownCalendar.BackgroundImage = System.Drawing.Image.FromFile("C:\\Program Files (x86)\\GrapeCity\\fplogo.png");
inputcell.DropDownCalendar.BackgroundImageLayout = ImageLayout.Stretch;
inputcell.DropDownCalendar.CalendarMargins = new System.Windows.Forms.Padding(5);
fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
inputcell.DropDownCalendar.BackgroundImage = System.Drawing.Image.FromFile("C:\Program Files (x86)\GrapeCity\fplogo.png")
inputcell.DropDownCalendar.BackgroundImageLayout = ImageLayout.Stretch
inputcell.DropDownCalendar.CalendarMargins = New System.Windows.Forms.Padding(5)
FpSpread1.Sheets(0).Cells(0, 0).CellType = inputcell
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.