Param |
Method |
Event |
|
|
ActiveTabSpecifies the active tab on the screen or returns the number of the active tab.
Syntax[get] HRESULT ActiveTab ( [put] HRESULT ActiveTab ( Parameters[get] pVal [out, retval] Returns the active tab number. [put] newVal [in] Specifies the active tab number.
Return ValuesReturns the currently set value
RemarksThe property must be set after MainClass is called and before the editor loads. The call can be performed via the created MainClass object's "params". If the value is incorrectly specified or not specified, it will be set as the Edit Tab.
Sample CodeJavaScript [get] var object = new NamoSE("test"); var edit = object.params.ActiveTab;
JavaScript [put] var object = new NamoSE("test"); object.params.ActiveTab = 2; object.editorStart();
|