[]
Creates a new instance of the PaddingF class using the same padding size for all edges.
public PaddingF(float all)
Public Sub New(all As Single)
Type | Name | Description |
---|---|---|
float | all | Padding size for all edges |
Creates a new instance of the PaddingF class using a separate padding size for each edge.
public PaddingF(float left, float top, float right, float bottom)
Public Sub New(left As Single, top As Single, right As Single, bottom As Single)
Type | Name | Description |
---|---|---|
float | left | Padding size for left edge |
float | top | Padding size for top edge |
float | right | Padding size for right edge |
float | bottom | Padding size for bottom edge |