PowerTools SPREAD for Windows Forms 8.0J
PaintByControl プロパティ (GcDateTimeCellType)


セルの描画方法を示す値を取得または設定します。true の場合、内部コントロールの描画を使用してセルが描画されます。この場合、セルは編集コントロールとまったく同じように描画されます。セルのすべての設定(スタイルの異なるフィールドなど)がセルの描画時に有効になります。文字列を直接描画するのではなくコントロールによって描画する場合、セルの描画パフォーマンスは遅くなります。また、PDF にエクスポートしたときにセルのテキストは選択できません。false の場合、パフォーマンスは良好ですが、一部の設定が無効になります。
構文
'Declaration
 
Public Property PaintByControl As Boolean
'使用法
 
Dim instance As GcDateTimeCellType
Dim value As Boolean
 
instance.PaintByControl = value
 
value = instance.PaintByControl
public bool PaintByControl {get; set;}
次のサンプルコードは、PaintByControlプロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType datecell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
datecell.PaintByControl = true;
fpSpread1.Sheets[0].Cells[0, 0].CellType = datecell;
Dim datecell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
datecell.PaintByControl = True
FpSpread1.Sheets(0).Cells(0, 0).CellType = datecell
参照

GcDateTimeCellType クラス
GcDateTimeCellType メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.