Packageview.domino.surfaceComponents.components
Classpublic class DominoTabView
InheritanceDominoTabView Inheritance components.tabNavigator.TabNavigatorWithOrientation
Implements view.interfaces.IDominoSurfaceComponent, view.interfaces.ISelectableItemsComponent, view.interfaces.IHistorySurfaceCustomHandlerComponent, interfaces.IComponentSizeOutput, view.interfaces.IDiv, view.interfaces.ICDATAInformation, interfaces.IRoyaleComponentConverter

Representation and converter from Visuale tabView components

This class work for convert from Visuale tabView components to target framework of body format.

Conversion status

Input: view.domino.surfaceComponents.components.DominoTabView

Example Domino output:

	 <table rowdisplay='tabs' leftmargin='0.0104in' widthtype='fixedleft' refwidth='8.8528in'>
	 <tablecolumn width='8.8528in'/>
	 <tablerow tablabel='Company'>
	 <tablecell></tablecell>
	 </tablerow>
	  </tablecolumn>
	 </table>
	 

Example Royale output:

	 TODO
     

Default MXML PropertymxmlContentFactory

See also

https://help.hcltechsw.com/dom_designer/10.0.1/basic/H_TABLEROW_ELEMENT_XML.html
https://github.com/Moonshine-IDE/VisualEditorConverterLib/blob/master/src/components/domino/DominoTabView.as


Public Properties
 PropertyDefined By
  height : Number
[override] [read-only] PrimeFaces: style
DominoTabView
  orientation : String
[override] [read-only] PrimeFaces: orientation
DominoTabView
  percentHeight : Number
[override] [read-only] PrimeFaces: style
DominoTabView
  percentWidth : Number
[override] [read-only] PrimeFaces: style
DominoTabView
  scrollable : Boolean
[override] [read-only] PrimeFaces: scrollable
DominoTabView
  width : Number
[override] [read-only] PrimeFaces: style
DominoTabView
Public Methods
 MethodDefined By
  
DominoTabView
  
getNewDiv():Div
DominoTabView
  
DominoTabView
Public Constants
 ConstantDefined By
  ELEMENT_NAME : String = TabView
[static]
DominoTabView
  PRIME_FACES_XML_ELEMENT_NAME : String = tabView
[static]
DominoTabView
Property Detail
heightproperty
height:Number  [read-only] [override]

PrimeFaces: style

The default value is "120".

This property can be used as the source for data binding.


Implementation
    public function get height():Number

Example
Visual Editor XML:
<TabView height="20"/>
PrimeFaces:
<p:tabView style="width:120px;height:120px;"/>
orientationproperty 
orientation:String  [read-only] [override]

PrimeFaces: orientation

The default value is "top".

This property can be used as the source for data binding.


Implementation
    public function get orientation():String

Example
Visual Editor XML:
<TabView orientation="top"/>
PrimeFaces:
<p:tabView orientation="top"/>
percentHeightproperty 
percentHeight:Number  [read-only] [override]

PrimeFaces: style

This property can be used as the source for data binding.


Implementation
    public function get percentHeight():Number

Example
Visual Editor XML:
<TabView percentHeight="80"/>
PrimeFaces:
<p:tabView style="percentHeight:80%;"/>
percentWidthproperty 
percentWidth:Number  [read-only] [override]

PrimeFaces: style

This property can be used as the source for data binding.


Implementation
    public function get percentWidth():Number

Example
Visual Editor XML:
<TabView percentWidth="80"/>
PrimeFaces:
<p:tabView style="percentWidth:80%;"/>
scrollableproperty 
scrollable:Boolean  [read-only] [override]

PrimeFaces: scrollable

The default value is "false".

This property can be used as the source for data binding.


Implementation
    public function get scrollable():Boolean

Example
Visual Editor XML:
<TabView scrollable="false"/>
PrimeFaces:
<p:tabView scrollable="false"/>
widthproperty 
width:Number  [read-only] [override]

PrimeFaces: style

The default value is "120".

This property can be used as the source for data binding.


Implementation
    public function get width():Number

Example
Visual Editor XML:
<TabView width="120"/>
PrimeFaces:
<p:tabView style="width:120px;height:120px;"/>
Constructor Detail
DominoTabView()Constructor
public function DominoTabView()



Method Detail
getNewDiv()method
public function getNewDiv():Div

Returns
Div
toRoyaleConvertCode()method 
public function toRoyaleConvertCode():XML

Returns
XML
Constant Detail
ELEMENT_NAMEConstant
public static const ELEMENT_NAME:String = TabView

PRIME_FACES_XML_ELEMENT_NAMEConstant 
public static const PRIME_FACES_XML_ELEMENT_NAME:String = tabView