FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > Column クラス : NoteIndicatorSize プロパティ |
'Declaration Public Property NoteIndicatorSize As Size
'使用法 Dim instance As Column Dim value As Size instance.NoteIndicatorSize = value value = instance.NoteIndicatorSize
public Size NoteIndicatorSize {get; set;}
例外 | 説明 |
---|---|
System.ArgumentOutOfRangeException | 指定された値が範囲外です。幅と高さは0〜9,999,999ピクセルにする必要があります。 |
fpSpread1.ActiveSheet.Columns[0].NoteIndicatorSize = new Size(10, 10); fpSpread1.ActiveSheet.SetNote(0, 0, "Test");
FpSpread1.ActiveSheet.Columns(0).NoteIndicatorSize = New Size(10, 10) FpSpread1.ActiveSheet.SetNote(0, 0, "Test")