SoWinRenderArea Constructor (Control, String, Boolean, Boolean, Boolean) |
Constructor which is passed arguments which tell it whether to register the mouse and keyboard devices by default (SoWinMouse and SoWinKeyboard).
Namespace: OIV.Inventor.WinAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 9.9.13.0 (9.9.13.0)
Syntaxpublic SoWinRenderArea(
Control parent,
string name,
bool buildInsideParent,
bool getMouseInput,
bool getKeyboardInput
)
Public Sub New (
parent As Control,
name As String,
buildInsideParent As Boolean,
getMouseInput As Boolean,
getKeyboardInput As Boolean
)
public:
SoWinRenderArea(
Control^ parent,
String^ name,
bool buildInsideParent,
bool getMouseInput,
bool getKeyboardInput
)
new :
parent : Control *
name : string *
buildInsideParent : bool *
getMouseInput : bool *
getKeyboardInput : bool -> SoWinRenderArea
Parameters
- parent
- Type: System.Windows.FormsControl
- name
- Type: SystemString
- buildInsideParent
- Type: SystemBoolean
- getMouseInput
- Type: SystemBoolean
- getKeyboardInput
- Type: SystemBoolean
RemarksNOTES
On Windows, the constructor will not create a new top level window you must pass a valid window handle for the parent parameter and pass true for buildInsideParent .
See Also