FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > StyleInfo Class : SameAppearance Method |
The SameAppearance method compares the appearance settings of two StyleInfo objects.
The method compares the following appearance settings:
FarPoint.Web.Spread.StyleInfo info = new FarPoint.Web.Spread.StyleInfo(); FarPoint.Web.Spread.StyleInfo minfo = new FarPoint.Web.Spread.StyleInfo(); FarPoint.Web.Spread.SheetStyleProperty prop; minfo.BackColor = Color.Yellow; info.ForeColor = Color.Red; info.Font.Bold = true; info.Merge(minfo); FpSpread1.ActiveSheetView.SetStyleInfo(0, 0, info); bool bol, boll; bol = info.IsPropertySet(FarPoint.Web.Spread.SheetStyleProperty.BackColor); boll = info.SameAppearance(minfo); ListBox1.Items.Add(Convert.ToString(bol)); ListBox1.Items.Add(Convert.ToString(boll));
Dim info As New FarPoint.Web.Spread.StyleInfo() Dim minfo As New FarPoint.Web.Spread.StyleInfo() Dim prop As FarPoint.Web.Spread.SheetStyleProperty minfo.BackColor = Color.Yellow info.ForeColor = Color.Red info.Font.Bold = True info.Merge(minfo) FpSpread1.ActiveSheetView.SetStyleInfo(0, 0, info) Dim bol, boll As Boolean bol = info.IsPropertySet(prop.BackColor) boll = info.SameAppearance(minfo) ListBox1.Items.Add(bol) ListBox1.Items.Add(boll)
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6