PowerTools SPREAD for ASP.NET 8.0J
GetModelColumnFromViewColumn メソッド

列インデックス
指定した列のモデル内のインデックスを取得します。
構文
'Declaration
 
Public Function GetModelColumnFromViewColumn( _
   ByVal column As Integer _
) As Integer
public int GetModelColumnFromViewColumn( 
   int column
)

パラメータ

column
列インデックス

戻り値の型

指定したシート列に対応する元のモデルの列インデックスを表すInteger
この例では、指定した列のインデックスを返します。
private void FpSpread1ChildViewCreated(object sender, FarPoint.Web.Spread.CreateChildViewEventArgs e)
{
      FarPoint.Web.Spread.SheetView sv;
      sv = e.SheetView;
      int i;
      i = sv.GetModelColumnFromViewColumn(1);
      Response.Write("The index in the model for the specified column is " + i.ToString());
}
Private Sub FpSpread1ChildViewCreated(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.CreateChildViewEventArgs) Handles
FpSpread1.ChildViewCreated
      Dim sv As FarPoint.Web.Spread.SheetView
      Dim i As Integer
      sv = e.SheetView
      i = sv.GetModelColumnFromViewColumn(1)
      Response.Write("The index in the model for the specified column is " & i.ToString())
End Sub
参照

SheetView クラス
SheetView メンバ

 

 


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