PowerTools SPREAD for Windows Forms 8.0J
ExcludeContents 列挙体


次の空でない行に移動するロジックによって行を反復処理するときに特定のプロパティが無視されるかどうかを示す値を指定します。
構文
'Declaration
 
Public Enum ExcludeContents 
   Inherits System.Enum
'使用法
 
Dim instance As ExcludeContents
public enum ExcludeContents : System.Enum 
メンバ
メンバ説明
ErrorTextエラーテキストを無視します。
Formula数式を無視します。
Noneどのオブジェクトも無視されません。
Noteノートを無視します。
Tagタグを無視します。
次のサンプルコードは、ExcludeContentsDuringNextNonEmpty 列挙体を使用します。
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(8, 8);
fpSpread1.ActiveSheet.Models.Data = dataModel;   
fpSpread1.Sheets[0].Cells[5, 3].Text = "test";        
listBox1.Items.Add(dataModel.PreviousEmptyColumnInRow(5, 5, FarPoint.Win.Spread.Model.ExcludeContents.Tag).ToString());
listBox1.Items.Add(dataModel.PreviousEmptyColumnInRow(5, 5).ToString());
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(8, 8)
FpSpread1.ActiveSheet.Models.Data = dataModel
FpSpread1.Sheets(0).Cells(5, 3).Text = "test"
ListBox1.Items.Add(dataModel.PreviousEmptyColumnInRow(5, 5, FarPoint.Win.Spread.Model.ExcludeContents.Tag).ToString())
ListBox1.Items.Add(dataModel.PreviousEmptyColumnInRow(5, 5).ToString())
継承階層

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.Model.ExcludeContents

参照

FarPoint.Win.Spread.Model 名前空間

 

 


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