FarPoint.Web.Spread 名前空間 > DefaultStyleCollection クラス : Contains メソッド |
'Declaration
Public Function Contains( _ ByVal style As NamedStyle _ ) As Boolean
public bool Contains( NamedStyle style )
FarPoint.Web.Spread.DefaultStyleCollection dsc = new FarPoint.Web.Spread.DefaultStyleCollection(); bool b; b = dsc.Contains(dsc.DataAreaDefault); TextBox1.Text = b.ToString();
Dim dsc As New FarPoint.Web.Spread.DefaultStyleCollection Dim b As Boolean b = dsc.Contains(dsc.DataAreaDefault) TextBox1.Text = b.ToString()