MESCIUS SPREAD for Windows Forms 17.0J
BorderStyle プロパティ (DropDownCalendar)

ドロップダウンカレンダーの境界線スタイルを取得または設定します。
構文
'Declaration
 
Public Property BorderStyle As BorderStyle
public BorderStyle BorderStyle {get; set;}

プロパティ値

罫線のスタイルを示すBorderStyle値。
デフォルト値はSystem.Windows.Forms.BorderStyle.FixedSingleです。
解説
BorderStyle プロパティを使用すると、既定の3次元コントロールに加えて、境界線のないフラットスタイルのコントロールを作成できます。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
inputcell.DropDownCalendar.BackColor = Color.Aquamarine;
inputcell.DropDownCalendar.TodayMarkColor = Color.Firebrick;
inputcell.DropDownCalendar.BorderStyle = BorderStyle.FixedSingle;
inputcell.DropDownCalendar.ShowTodayMark = true;
fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell;
fpSpread1.Sheets[0].Columns[0].Width = 100;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
inputcell.DropDownCalendar.BackColor = Color.Aquamarine
inputcell.DropDownCalendar.TodayMarkColor = Color.Firebrick
inputcell.DropDownCalendar.BorderStyle = BorderStyle.FixedSingle
inputcell.DropDownCalendar.ShowTodayMark = True
fpSpread1.Sheets(0).Cells(0, 0).CellType = inputcell
fpSpread1.Sheets(0).Columns(0).Width = 100
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


© MESCIUS inc. All rights reserved.