Treecol"

From Documentation
Line 9: Line 9:
 
= Employment/Purpose =
 
= Employment/Purpose =
  
Space is a Separator with the orient default to "horizontal".
+
[[Image:treecol.png]]
 
 
In other words, <space> is equivalent to <separator orient="horizontal">
 
 
 
  
 +
<source lang="xml" >
 +
<window title="tree demo" border="normal" width="400px">
 +
<tree id="tree" width="90%" rows="2">
 +
<treecols sizable="true">
 +
<treecol label="Name" />
 +
<treecol label="Description" />
 +
<treecol label="Remark" />
 +
</treecols>
 +
<treechildren>
 +
<treeitem>
 +
<treerow>
 +
<treecell label="Item 1" />
 +
<treecell label="Item 1 description" />
 +
<treecell label="Item 1 remark" />
 +
</treerow>
 +
<treechildren>
 +
<treeitem>
 +
<treerow>
 +
<treecell label="Item 1.2" />
 +
<treecell label="Item 1.2 description" />
 +
</treerow>
 +
</treeitem>
 +
</treechildren>
 +
</treeitem>
 +
</treechildren>
 +
</tree>
 +
</window>
 +
</source>
  
 
= Example =
 
= Example =

Revision as of 05:00, 11 May 2010

Treecol

Employment/Purpose

Treecol.png

<window title="tree demo" border="normal" width="400px">
	<tree id="tree" width="90%" rows="2">
		<treecols sizable="true">
			<treecol label="Name" />
			<treecol label="Description" />
			<treecol label="Remark" />
		</treecols>
		<treechildren>
			<treeitem>
				<treerow>
					<treecell label="Item 1" />
					<treecell label="Item 1 description" />
					<treecell label="Item 1 remark" />
				</treerow>
				<treechildren>
					<treeitem>
						<treerow>
							<treecell label="Item 1.2" />
							<treecell label="Item 1.2 description" />
						</treerow>
					</treeitem>
				</treechildren>
			</treeitem>
		</treechildren>
	</tree>
</window>

Example

Supported events

Name
Event Type
None None

Supported Children

*ALL

Use cases

Version Description Example Location
5.0+    

Version History

Version Date Content
5.x.x x/x/20xx Initialization



Last Update : 2010/05/11

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.