PowerTools SPREAD for Windows Forms 8.0J
GetSpanCell メソッド


セルの行インデックス
セルの列インデックス
このシートの指定したセルを含む連結セルの範囲を取得します。
構文
'Declaration
 
Public Overridable Function GetSpanCell( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As CellRange
'使用法
 
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim value As CellRange
 
value = instance.GetSpanCell(row, column)
public virtual CellRange GetSpanCell( 
   int row,
   int column
)

パラメータ

row
セルの行インデックス
column
セルの列インデックス

戻り値の型

指定したセルを含むセル結合の範囲を含む CellRange オブジェクト

次のサンプルコードでは、このメンバを使用して、連結セルの範囲を返しています。
fpSpread1.ActiveSheet.AddSpanCell(0, 0, 2, 2);
FarPoint.Win.Spread.Model.CellRange cr;
cr = fpSpread1.ActiveSheet.GetSPanCell(0, 0);
label1.Text = "The span covers cells " + cr.Row + ", " + cr.Column + ", " + cr.RowCount + ", " + cr.ColumnCount;
Dim cr As FarPoint.Win.Spread.Model.CellRange
FpSpread1.ActiveSheet.AddSpanCell(0, 0, 2, 2)
cr = FpSpread1.ActiveSheet.GetSpanCell(0, 0)
Label1.Text = "The span covers cells " & cr.Row & ", " & cr.Column & ", " & cr.RowCount & ", " & cr.ColumnCount
参照

SheetView クラス
SheetView メンバ
AddSpanCell メソッド

開発者ガイド

セルの結合

 

 


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