Margins Constructor

Aspose.Note for .NET API

Margins Constructor

Initializes a new instance of the Margins struct with the specified left, right, top, and bottom margins.

Namespace:  Aspose.Note
Assembly:  Aspose.Note (in Aspose.Note.dll) Version: 18.1
Syntax
public Margins(
	float left,
	float right,
	float top,
	float bottom
)
Public Sub New ( 
	left As Single,
	right As Single,
	top As Single,
	bottom As Single
)
public:
Margins(
	float left, 
	float right, 
	float top, 
	float bottom
)
new : 
        left : float32 * 
        right : float32 * 
        top : float32 * 
        bottom : float32 -> Margins

Parameters

left
Type: SystemSingle
The left margin width.
right
Type: SystemSingle
The right margin width.
top
Type: SystemSingle
The top margin width.
bottom
Type: SystemSingle
The bottom margin width.
See Also