Click or drag to resize
RenderAreaListenerOnRequestedSize Method

Triggered when a client requests a new renderArea size.

Namespace: OIV.RemoteViz.Rendering
Assembly: OIV.RemoteViz (in OIV.RemoteViz.dll) Version: 9.9.13.0 (9.9.13.0)
Syntax
public virtual void OnRequestedSize(
	RenderArea renderArea,
	Connection sender,
	uint width,
	uint height
)

Parameters

renderArea
Type: OIV.RemoteViz.RenderingRenderArea

: pointer to the RenderArea

sender
Type: OIV.RemoteViz.RenderingConnection

: pointer to the connection that made the size request

width
Type: SystemUInt32

: requested width

height
Type: SystemUInt32

: requested height

Remarks

To resize the renderArea, call the method RenderArea.resize. Default behavior : resize the renderArea to the requested size.

onResize, RenderArea.resize

See Also