FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread.Model 名前空間 : ExcludeContents 列挙体 |
'Declaration Public Enum ExcludeContents Inherits System.Enum
'使用法 Dim instance As ExcludeContents
public enum ExcludeContents : System.Enum
メンバ | 説明 |
---|---|
ErrorText | エラーテキストを無視します。 |
Formula | 数式を無視します。 |
None | どのオブジェクトも無視されません。 |
Note | ノートを無視します。 |
Tag | タグを無視します。 |
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