[]
Initializes a new instance of the CellPadding class with the same value for all sides.
public CellPadding(int all)
Public Sub New(all As Integer)
| Type | Name | Description |
|---|---|---|
| int | all | The padding value for all sides. |
Initializes a new instance of the CellPadding class with individual values for each side.
public CellPadding(int top, int right, int bottom, int left)
Public Sub New(top As Integer, right As Integer, bottom As Integer, left As Integer)
| Type | Name | Description |
|---|---|---|
| int | top | The integer value representing the top padding. |
| int | right | The integer value representing the right padding. |
| int | bottom | The integer value representing the bottom padding. |
| int | left | The integer value representing the left padding. |