Skip to content

Commit

Permalink
Rebuild documentation
Browse files Browse the repository at this point in the history
Change-Id: I6d9d69a09b18aaf32d908be32bd2b84609b597cb
  • Loading branch information
ewpatton committed Sep 20, 2024
1 parent 6874648 commit 6332f7c
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions appinventor/docs/html/reference/components/userinterface.html
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,19 @@ <h3 id="ListView-Properties">Properties</h3>
<dl class="properties">
<dt id="ListView.BackgroundColor" class="color"><em>BackgroundColor</em></dt>
<dd>The color of the <code class="highlighter-rouge">ListView</code> background.</dd>
<dt id="ListView.BounceEdgeEffect" class="boolean"><em>BounceEdgeEffect</em></dt>
<dd>Sets the bounce effect function. <code class="logic block highlighter-rouge">true</code> will enable the function,
<code class="logic block highlighter-rouge">false</code> will disable.</dd>
<dt id="ListView.DividerColor" class="color"><em>DividerColor</em></dt>
<dd>The color of the <code class="highlighter-rouge">ListView</code> divider.</dd>
<dt id="ListView.DividerThickness" class="number"><em>DividerThickness</em></dt>
<dd>Specifies the divider thickness of list view</dd>
<dt id="ListView.ElementColor" class="color"><em>ElementColor</em></dt>
<dd>The color of the <code class="highlighter-rouge">ListView</code> element.</dd>
<dt id="ListView.ElementCornerRadius" class="number"><em>ElementCornerRadius</em></dt>
<dd>Specifies the corner radius of the list view element.</dd>
<dt id="ListView.ElementMarginsWidth" class="number"><em>ElementMarginsWidth</em></dt>
<dd>Specifies the width of the margins of a list view element</dd>
<dt id="ListView.Elements" class="list bo"><em>Elements</em></dt>
<dd>Specifies the list of choices to display.</dd>
<dt id="ListView.ElementsFromString" class="text wo"><em>ElementsFromString</em></dt>
Expand Down Expand Up @@ -760,8 +773,11 @@ <h3 id="ListView-Properties">Properties</h3>
layout is <code class="highlighter-rouge">Image,MainText</code> this property will allow any number of elements to be
defined, each containing a filename for Image and a string for MainText.
Designer only property.</dd>
<dt id="ListView.ListViewLayout" class="number do"><em>ListViewLayout</em></dt>
<dd>Specifies type of layout for ListView row. Designer only property.</dd>
<dt id="ListView.ListViewLayout" class="number"><em>ListViewLayout</em></dt>
<dd>Specifies type of layout for ListView row.</dd>
<dt id="ListView.MultiSelect" class="boolean"><em>MultiSelect</em></dt>
<dd>Sets the multiselect function. <code class="logic block highlighter-rouge">true</code> will enable the function,
<code class="logic block highlighter-rouge">false</code> will disable.</dd>
<dt id="ListView.Orientation" class="number"><em>Orientation</em></dt>
<dd>Specifies the layout’s orientation. This may be: <code class="highlighter-rouge">Vertical</code>, which displays elements
in rows one after the other; or <code class="highlighter-rouge">Horizontal</code>, which displays one element at a time and
Expand Down Expand Up @@ -807,6 +823,14 @@ <h3 id="ListView-Events">Events</h3>
<h3 id="ListView-Methods">Methods</h3>

<dl class="methods">
<dt id="ListView.AddItem" class="method"><i></i> AddItem(<em class="text">mainText</em>,<em class="text">detailText</em>,<em class="text">imageName</em>)</dt>
<dd>Add new Item to list</dd>
<dt id="ListView.AddItemAtIndex" class="method"><i></i> AddItemAtIndex(<em class="number">index</em>,<em class="text">mainText</em>,<em class="text">detailText</em>,<em class="text">imageName</em>)</dt>
<dd>Add new Item to list at a given index</dd>
<dt id="ListView.AddItems" class="method"><i></i> AddItems(<em class="list">itemsList</em>)</dt>
<dd>Add new Items to list</dd>
<dt id="ListView.AddItemsAtIndex" class="method"><i></i> AddItemsAtIndex(<em class="number">index</em>,<em class="list">itemsList</em>)</dt>
<dd>Add new Items to list at specific index</dd>
<dt id="ListView.CreateElement" class="method returns dictionary"><i></i> CreateElement(<em class="text">mainText</em>,<em class="text">detailText</em>,<em class="text">imageName</em>)</dt>
<dd>Creates a</dd>
<dt id="ListView.GetDetailText" class="method returns text"><i></i> GetDetailText(<em class="dictionary">listElement</em>)</dt>
Expand All @@ -815,8 +839,6 @@ <h3 id="ListView-Methods">Methods</h3>
<dd>Get the filename of the image of a ListView element that has been uploaded to Media.</dd>
<dt id="ListView.GetMainText" class="method returns text"><i></i> GetMainText(<em class="dictionary">listElement</em>)</dt>
<dd>Get the Main Text of a ListView element.</dd>
<dt id="ListView.Refresh" class="method"><i></i> Refresh()</dt>
<dd>Reload the ListView to reflect any changes in the data.</dd>
<dt id="ListView.RemoveItemAtIndex" class="method"><i></i> RemoveItemAtIndex(<em class="number">index</em>)</dt>
<dd>Removes Item from list at a given index</dd>
</dl>
Expand Down

0 comments on commit 6332f7c

Please sign in to comment.