Drawable Constructor (Boolean) |
Initializes a new instance of the
Drawable class with a hint whether it is intended for a large canvas
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Drawable(
bool largeCanvas
)
Public Sub New (
largeCanvas As Boolean
)
new :
largeCanvas : bool -> Drawable
Parameters
- largeCanvas
- Type: SystemBoolean
If set to true the drawable is created to have a large canvas.
Remarks
Some platforms can optimize large canvases, such as mobile platforms by tiling the painting of the canvas.
A large canvas is one that is larger than the intended screen size.
Platforms are not required to change the behaviour of the drawable depending on this value. Desktop platforms
typically do not change their behaviour based on this.
See Also