FarPoint.Web.Spread 名前空間 > Border クラス : BorderColor プロパティ |
オブジェクトの境界線の各辺の色を設定する場合、BorderColorBottom, BorderColorLeft、BorderColorRight、BorderColorTopの各プロパティを使用します。
他の境界線の色のプロパティが設定されているかどうかをチェックするには、IsDefinedメソッドを使用します。
FarPoint.Web.Spread.Border b = new FarPoint.Web.Spread.Border(); bool ie; FarPoint.Web.Spread.Cell c; b.BorderColor = Color.Yellow; b.BorderSize = 3; b.BorderStyle = BorderStyle.Inset; c = FpSpread1.ActiveSheetView.Cells[0, 0]; c.Border = b; ie = b.IsEmpty(); TextBox1.Text = ie.ToString();
Dim b As New FarPoint.Web.Spread.Border Dim ie As Boolean Dim c As FarPoint.Web.Spread.Cell b.BorderColor = Color.Yellow b.BorderSize = 3 b.BorderStyle = BorderStyle.Inset c = FpSpread1.ActiveSheetView.Cells(0, 0) c.Border = b ie = b.IsEmpty() TextBox1.Text = ie.ToString()