bitree2row.xml

来自「ajax 框价.是个好工具.javascript 矿家.可以用在任何平台.」· XML 代码 · 共 174 行

XML
174
字号
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="api.xsl"?><class name="BiTree2Row" extends="BiObject">	<description>This class is used as the data for rows in the<link class="BiTree2">BiTree2</link> component</description>	<arguments>		<argument name="oData" optional="true">			<description>Optional array of objects describing the data 							for the cells</description>			<type>Object[]</type>		</argument>	</arguments>	<staticMethods>	</staticMethods>	<staticFields>	</staticFields>	<methods>		<method name="getData">			<description>Returns the data at the given column</description>			<arguments>				<argument name="nCol">					<description>The column index for the data</description>					<type>Number</type>				</argument>			</arguments>			<returns>				<type>Object</type>			</returns>		</method>		<method name="setData">			<description>Sets the data for the cell at the given column</description>			<arguments>				<argument name="nCol">					<description>The column index for the data</description>					<type>Number</type>				</argument>				<argument name="oData">					<description>The data associated with the cell at the given 						column</description>					<type>Object</type>				</argument>			</arguments>			<returns>				<type>Object</type>			</returns>		</method>		<method name="getCell">			<description>Returns the cell for the given column</description>			<arguments>				<argument name="nCol">					<description>The column index for the cell to get</description>					<type>Number</type>				</argument>			</arguments>			<returns>				<type>					<link class="BiTree2Cell">BiTree2Cell</link>				</type>			</returns>		</method>		<method name="addCell">			<description>Adds a cell to the row</description>			<arguments>				<argument name="oChild">					<description>The cell to add</description>					<type>						<link class="BiTree2Cell">BiTree2Cell</link>					</type>				</argument>				<argument name="oBefore" optional="true">					<description>Optional cell to insert the new cell before</description>					<type>						<link class="BiTree2Cell">BiTree2Cell</link>					</type>				</argument>			</arguments>			<returns>				<type>void</type>			</returns>		</method>		<method name="removeCell">			<description>Removes a cell from the row</description>			<arguments>				<argument name="oChild">					<description>The cell to remove</description>					<type>						<link class="BiTree2Cell">BiTree2Cell</link>					</type>				</argument>			</arguments>			<returns>				<type>					<link class="BiTree2Cell">BiTree2Cell</link>				</type>			</returns>		</method>		<method name="addRow">			<description>Adds a row to the tree</description>			<arguments>				<argument name="oChild">					<description>The row to add to the tree</description>					<type>						<link class="BiTree2Row">BiTree2Row</link>					</type>				</argument>				<argument name="oBefore" optional="true">					<description>Optional argument telling what row to insert before</description>					<type>						<link class="BiTree2Row">BiTree2Row</link>					</type>				</argument>			</arguments>			<returns>				<type>void</type>			</returns>		</method>		<method name="removeRow">			<description>Removes a row item from the tree</description>			<arguments>				<argument name="oChild">					<description>The row to remove</description>					<type>						<link class="BiTree2Row">BiTree2Row</link>					</type>				</argument>			</arguments>			<returns>				<type>void</type>			</returns>		</method>		<method name="removeAll">			<description>This removes and disposes all the rows</description>			<arguments>			</arguments>			<returns>				<type>void</type>			</returns>		</method>	</methods>	<properties>		<property name="parent" get="true">			<description>The parent tree row</description>			<type>				<link class="BiTree2Row">BiTree2Row</link>			</type>		</property>		<property name="tree" get="true">			<description>The<link class="BiTree2">BiTree2</link> the row is part of</description>			<type>				<link class="BiTree2">BiTree2</link>			</type>		</property>		<property name="expanded" get="true" set="true">			<description>Whether the row is expanded</description>			<type>Boolean</type>		</property>		<property name="cells" get="true">			<description>The cells in the row</description>			<type>				<link class="BiGrid2Cell">BiGrid2Cell[]</link>			</type>		</property>		<property name="rows" get="true">			<description>The rows that are children to the current row</description>			<type>				<link class="BiTree2Row">BiTree2Row[]</link>			</type>		</property>	</properties>	<events>	</events>	<remarks>	</remarks></class>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?