GrapeCity SPREAD for Windows Forms 11.0J
PaintByControl プロパティ (GcNumberCellType)


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

GcNumberCellType クラス
GcNumberCellType メンバ

 

 


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