Initializes a new instance of the RectangleCornerRadius class with the specified radius values for each corner of the rectangle.

Namespace: Neodynamic.SDK.Printing
Assembly: Neodynamic.SDK.ThermalLabel (in Neodynamic.SDK.ThermalLabel.dll) Version: 5.0.3500.0 (5.0.3500.4)

Syntax

C#
public RectangleCornerRadius(
	double topLeft,
	double topRight,
	double bottomRight,
	double bottomLeft
)
Visual Basic
Public Sub New ( _
	topLeft As Double, _
	topRight As Double, _
	bottomRight As Double, _
	bottomLeft As Double _
)
Visual C++
public:
RectangleCornerRadius(
	double topLeft, 
	double topRight, 
	double bottomRight, 
	double bottomLeft
)

Parameters

topLeft
Type: System..::..Double
The radius of the top-left corner.
topRight
Type: System..::..Double
The radius of the top-right corner.
bottomRight
Type: System..::..Double
The radius of the bottom-right corner.
bottomLeft
Type: System..::..Double
The radius of the bottom-left corner.

See Also