Dim inset As New FarPoint.Web.Spread.Inset()
Dim clone As New FarPoint.Web.Spread.Inset()
Dim bl As Boolean
inset.Bottom = 35
inset.Left = 35
inset.Right = 5
inset.Top = 5
clone.Bottom = inset.Bottom
clone.Left = inset.Left
clone.Right = inset.Right
clone.Top = inset.Top
bl = clone.Equals(inset)
TextBox1.Text = bl
FarPoint.Web.Spread.Inset inset = new FarPoint.Web.Spread.Inset();
FarPoint.Web.Spread.Inset clone = new FarPoint.Web.Spread.Inset();
bool bl;
inset.Bottom = 35;
inset.Left = 35;
inset.Right = 5;
inset.Top = 5;
clone.Bottom = inset.Bottom;
clone.Left = inset.Left;
clone.Right = inset.Right;
clone.Top = inset.Top;
bl = clone.Equals(inset);
TextBox1.Text = Convert.ToString(bl);