FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread.Model 名前空間 > ISheetDataModel インターフェース : IsEmpty メソッド |
FarPoint.Win.Spread.Model.ISheetDataModel isd; bool b; isd = (FarPoint.Win.Spread.Model.ISheetDataModel)fpSpread1.ActiveSheet.Models.Data; isd.SetValue(0, 0, "FarPoint"); b = isd.IsEmpty(); label1.Text = "The sheet is empty = " + b.ToString();
Dim isd As FarPoint.Win.Spread.Model.ISheetDataModel Dim b As Boolean isd = FpSpread1.ActiveSheet.Models.Data isd.SetValue(0, 0, "FarPoint") b = isd.IsEmpty() Label1.Text = "The sheet is empty = " & b.ToString()