System::Drawing::Size::Size constructor
Contents
[
Hide
]Size::Size() constructor
Constructs a new Size object and initializes its width and height values with 0.
System::Drawing::Size::Size()
See Also
- Class Size
- Namespace System::Drawing
- Library Aspose.Font for C++
Size::Size(const Point&) constructor
Constructs a new Size object and initializes its width and height values with the values of X and Y coordinates of the specifide point correspondingly.
System::Drawing::Size::Size(const Point &point)
| Parameter | Type | Description |
|---|---|---|
| point | const Point& | A Point object whose X and Y coordinates are used to initialize width and height value of the Size object being created |
See Also
- Class Point
- Class Size
- Namespace System::Drawing
- Library Aspose.Font for C++
Size::Size(int, int) constructor
Constructs a new Size object and initializes it with the specified value.
System::Drawing::Size::Size(int width, int height)
| Parameter | Type | Description |
|---|---|---|
| width | int | The value to width |
| height | int | The value of height |
See Also
- Class Size
- Namespace System::Drawing
- Library Aspose.Font for C++