FarPoint.Web.Spread.Border border = new FarPoint.Web.Spread.Border();
FarPoint.Web.Spread.Cell acell;
bool bl;
acell = FpSpread1.Cells[0, 0];
border.BorderColorBottom = Color.Red;
border.BorderColorRight = Color.Green;
border.BorderSize = 2;
bl = border.IsDefined(FarPoint.Web.Spread.BorderProperty.BorderColorBottom);
acell.Border = border;
TextBox1.Text = Convert.ToString(bl);
Dim border As New FarPoint.Web.Spread.Border()
Dim acell As FarPoint.Web.Spread.Cell
Dim bl As Boolean
acell = FpSpread1.Cells(0, 0)
border.BorderColorBottom = Color.Red
border.BorderColorRight = Color.Green
border.BorderSize = 2
bl = border.IsDefined(FarPoint.Web.Spread.BorderProperty.BorderColorBottom)
acell.Border = border
TextBox1.Text = bl