FarPoint.Web.Spread 名前空間 > Cell クラス : Tag プロパティ |
この値はアプリケーションでのみ使用されます。スプレッドシートではこの値を使用しません。
FarPoint.Web.Spread.Cell mycell; object obj; obj = new FarPoint.Web.Spread.ButtonCellType(); mycell = FpSpread1.Cells[0, 0]; mycell.Tag = obj; TextBox1.Text = Convert.ToString(mycell.Tag);
Dim mycell As FarPoint.Web.Spread.Cell Dim obj As Object obj = New FarPoint.Web.Spread.ButtonCellType() mycell = FpSpread1.Cells(0, 0) mycell.Tag = obj TextBox1.Text = Convert.ToString(mycell.Tag)