TableLayoutPanelCellBorderStyle Enumerazione

Definizione

Specifica lo stile del bordo di una cella in un controllo layout di tabella.

public enum class TableLayoutPanelCellBorderStyle
public enum TableLayoutPanelCellBorderStyle
type TableLayoutPanelCellBorderStyle = 
Public Enum TableLayoutPanelCellBorderStyle
Ereditarietà
TableLayoutPanelCellBorderStyle

Campi

Inset 2

Bordo incassato a linea singola.

InsetDouble 3

Bordo incassato a linea doppia.

None 0

Nessun bordo.

Outset 4

Bordo in rilievo a linea singola.

OutsetDouble 5

Bordo in rilievo a linea doppia.

OutsetPartial 6

Bordo a linea singola contenente una parte in rilievo.

Single 1

Bordo a riga singola.

Esempio

Nell'esempio seguente viene illustrato come usare l'enumerazione per impostare l'oggetto TableLayoutPanelCellBorderStyle CellBorderStyle per un TableLayoutPanel controllo. Questo esempio di codice fa parte di un esempio più grande fornito per il TableLayoutPanel controllo.

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

Commenti

L'enumerazione TableLayoutPanelCellBorderStyle rappresenta le diverse opzioni di stile del bordo per una cella in un TableLayoutPaneloggetto . La larghezza del bordo della cella per ogni stile è determinata dalla TableLayoutPanel classe . Lo spazio per il TableLayoutPanel bordo viene preso dal controllo DisplayRectangle.

Si applica a

Vedi anche