PowerTools SPREAD for ASP.NET 8.0J
Parent プロパティ (Cell)

このセルの親を取得します。
構文
'Declaration
 
Public ReadOnly Property Parent As Cells
public Cells Parent {get;}

プロパティ値

このセルを含む親Cellsオブジェクト
この例では、Cellオブジェクトを作成し、そのParentをテキストボックスに返します。
FarPoint.Web.Spread.Cell mycell;
FarPoint.Web.Spread.Cells cells;
mycell = FpSpread1.Cells[0, 0];
mycell.Value = "Who is your parent?";
cells = mycell.Parent;
TextBox1.Text = Convert.ToString(cells);
Dim mycell As FarPoint.Web.Spread.Cell
Dim cells As FarPoint.Web.Spread.Cells
mycell = FpSpread1.Cells(0, 0)
mycell.Value = "Who isyour parent?"
cells = mycell.Parent()
TextBox1.Text=Convert.ToString(cells)
参照

Cell クラス
Cell メンバ
Cells クラス

 

 


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