TableLayoutPanelCellBorderStyle 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定資料表配置控制項內的儲存格之框線樣式。
public enum class TableLayoutPanelCellBorderStyle
public enum TableLayoutPanelCellBorderStyle
type TableLayoutPanelCellBorderStyle =
Public Enum TableLayoutPanelCellBorderStyle
- 繼承
欄位
Inset | 2 | 單行下凹框線。 |
InsetDouble | 3 | 雙行下凹框線。 |
None | 0 | 無框線。 |
Outset | 4 | 單行凸起的框線。 |
OutsetDouble | 5 | 雙行凸起的框線。 |
OutsetPartial | 6 | 包含凸起部分的單行框線。 |
Single | 1 | 單行框線。 |
範例
下列範例示範如何使用 TableLayoutPanelCellBorderStyle 列舉來設定 CellBorderStyle 控制項的 TableLayoutPanel 。 此程式碼範例是提供給 控制項之較大範例的 TableLayoutPanel 一部分。
private void borderStyleOutsetRadioBtn_CheckedChanged(
System.Object sender,
System.EventArgs e)
{
this.TableLayoutPanel1.CellBorderStyle =
TableLayoutPanelCellBorderStyle.Outset;
}
private void borderStyleNoneRadioBtn_CheckedChanged(
System.Object sender,
System.EventArgs e)
{
this.TableLayoutPanel1.CellBorderStyle =
TableLayoutPanelCellBorderStyle.None;
}
private void borderStyleInsetRadioBtn_CheckedChanged(
System.Object sender,
System.EventArgs e)
{
this.TableLayoutPanel1.CellBorderStyle =
TableLayoutPanelCellBorderStyle.Inset;
}
Private Sub borderStyleOutsetRadioBtn_CheckedChanged( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles borderStyleOutsetRadioBtn.CheckedChanged
Me.TableLayoutPanel1.CellBorderStyle = TableLayoutPanelCellBorderStyle.Outset
End Sub
Private Sub borderStyleNoneRadioBtn_CheckedChanged( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles borderStyleNoneRadioBtn.CheckedChanged
Me.TableLayoutPanel1.CellBorderStyle = TableLayoutPanelCellBorderStyle.None
End Sub
Private Sub borderStyleInsetRadioBtn_CheckedChanged( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles borderStyleInsetRadioBtn.CheckedChanged
Me.TableLayoutPanel1.CellBorderStyle = TableLayoutPanelCellBorderStyle.Inset
End Sub
備註
列舉 TableLayoutPanelCellBorderStyle 表示 中 TableLayoutPanel 儲存格的不同框線樣式選項。 每個樣式的儲存格框線寬度是由 TableLayoutPanel 類別決定。 框線的空間取自 TableLayoutPanel 控制項的 DisplayRectangle 。