DrawableIHandlerCreate Method (Boolean) |
Called when creating a drawable control 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 void Create(
bool largeCanvas
)
Sub Create (
largeCanvas As Boolean
)
abstract Create :
largeCanvas : bool -> unit
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