Bottom Property
Bottom
Returns the bottom margin.
The returned value is the bottom watermark margin, in pixels, relative to the cell.
Declaration
public int Bottom { get; }
Public ReadOnly Property Bottom As Integer
Examples
Margin margin = new Margin(1, 2, 3, 4);
int bottom = margin.Bottom;