FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > Column クラス : Resizable プロパティ |
'Declaration Public Property Resizable As Boolean
'使用法 Dim instance As Column Dim value As Boolean instance.Resizable = value value = instance.Resizable
public bool Resizable {get; set;}
FarPoint.Win.Spread.Column col;
col = fpSpread1.ActiveSheet.Columns[0];
col.Resizable = false;
Dim col As FarPoint.Win.Spread.Column col = FpSpread1.ActiveSheet.Columns(0) col.Resizable = False