ServiceCreateRenderArea Method |
Namespace: OIV.RemoteViz.RenderingAssembly: OIV.RemoteViz (in OIV.RemoteViz.dll) Version: 9.9.13.0 (9.9.13.0)
Syntaxpublic void CreateRenderArea(
string id,
uint width,
uint height,
RenderAreaHardware renderAreaHardware
)
Public Sub CreateRenderArea (
id As String,
width As UInteger,
height As UInteger,
renderAreaHardware As RenderAreaHardware
)
public:
void CreateRenderArea(
String^ id,
unsigned int width,
unsigned int height,
RenderAreaHardware^ renderAreaHardware
)
member CreateRenderArea :
id : string *
width : uint32 *
height : uint32 *
renderAreaHardware : RenderAreaHardware -> unit
Parameters
- id
- Type: SystemString
: ID identifying the RenderArea
- width
- Type: SystemUInt32
: renderArea width
- height
- Type: SystemUInt32
: renderArea height
- renderAreaHardware
- Type: OIV.RemoteViz.RenderingRenderAreaHardware
: renderArea hardware settings. This object will be copied.
Remarks
This method is optional. The other way to create a renderArea is to return true to the callback ServiceListener.onPendingCreateRenderArea
If the renderArea already exists, the call will be ignored.
See Also