Size constructor
init
Constructs a new instance of Size
def __init__(self):
...
init
Initializes a new instance of the Size
structure from the specified Point
.
def __init__(self, point):
...
Parameter | Type | Description |
---|---|---|
point | Point | The Point from which to initialize this Size . |
init
Initializes a new instance of the Size
structure from the specified dimensions.
def __init__(self, width, height):
...
Parameter | Type | Description |
---|---|---|
width | int | The width component of the new Size . |
height | int | The height component of the new Size . |
See Also
- module
aspose.cad
- class
Point
- class
Size