mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-01 08:56:13 +02:00
docs: update TCustomGrid.DefColWidth, TCustomGrid.DefRowHeight, TToolBar.ButtonHeight, TToolBar.ButtonWidth, TToolBar.DropDownWidth, TCustomTreeView.ExpandSignSize, TCustomTreeView.Indent
git-svn-id: trunk@54888 -
This commit is contained in:
parent
eeb433a615
commit
510e6e4c49
@ -10586,14 +10586,16 @@
|
||||
<element name="TToolBar.ButtonHeight">
|
||||
<short>
|
||||
<var>ButtonHeight</var> - the height of the buttons</short>
|
||||
<descr/>
|
||||
<descr><p>Use 0 for autosized value</p><p>Use <link id="TToolBar.GetRealButtonHeight">GetRealButtonHeight</link> for real value.</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TToolBar.ButtonWidth">
|
||||
<short>
|
||||
<var>ButtonWidth</var> - the width of the buttons</short>
|
||||
<descr/>
|
||||
<descr><p>Use 0 for autosized value</p><p>Use <link id="TToolBar.GetRealButtonWidth">GetRealButtonWidth</link> for real value.</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
@ -16618,7 +16620,8 @@ If Images.HasOverlays then it is fetched from Images via Images.Overlay(Node.Ove
|
||||
<!-- property Visibility: protected -->
|
||||
<element name="TCustomTreeView.Indent">
|
||||
|
||||
<descr/>
|
||||
<descr><p>Use 0 for autosized value. </p><p>Use <link id="TCustomTreeView.GetRealIndent">GetRealIndent</link> for real value.</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
<short>Size in pixels by which each nested branching level is to be indented.</short>
|
||||
</element>
|
||||
@ -18713,7 +18716,8 @@ If Images.HasOverlays then it is fetched from Images via Images.Overlay(Node.Ove
|
||||
<short>Show/Hide caption</short>
|
||||
<descr>The ToolBar.ShowCaptions has precendence. Hiding will only work if ToolBar.List is true.</descr>
|
||||
</element>
|
||||
<element name="TToolBar.DropDownWidth"><short>Width of the drop down arrow button.</short><descr>Use a negative value (-1) for theme default.</descr>
|
||||
<element name="TToolBar.DropDownWidth"><short>Width of the drop down arrow button.</short><descr><p>Use 0 for autosized value</p><p>Use <link id="TToolBar.GetRealDropDownWidth">GetRealDropDownWidth</link> for real value.</p>
|
||||
</descr>
|
||||
</element>
|
||||
<element name="TToolButton.OnArrowClick"><short>Executed when user clicked the arrow part for Style=tbsDropDown.</short><descr>It is not executed if DropDownMenu is assigned.</descr>
|
||||
</element><element name="TToolButton.ArrowClick"><short>Invokes the OnArrowClick event handler</short><descr>Executed automatically when user clicked the arrow part for Style=tbsDropDown and no DropDownMenu is assigned.</descr>
|
||||
@ -18732,6 +18736,8 @@ If Images.HasOverlays then it is fetched from Images via Images.Overlay(Node.Ove
|
||||
</element><element name="TTreeView.SeparatorColor">
|
||||
</element>
|
||||
<element name="TCustomTreeView.ExpandSignSize"><short>Size of expand/collapse (fold/unfold) symbol.</short>
|
||||
<descr><p>Use 0 for autosized value. </p><p>Use <link id="TCustomTreeView.GetRealExpandSignSize">GetRealExpandSignSize</link> for real value.</p>
|
||||
</descr>
|
||||
</element><element name="TCustomTreeView.MultiSelect"><short>Allow to select several tree-items at a time, e.g. using Ctrl+click (select one item more) or Shift+click (select range of items).</short>
|
||||
</element><element name="TCustomTreeView.MultiSelectStyle"><short>Additional options for MultiSelect property.</short>
|
||||
</element><element name="TCustomTreeView.SelectionFontColor"><short>Color used to paint text of selected item.</short>
|
||||
|
@ -4042,9 +4042,7 @@ Application developers should use the <link id="TCustomGrid.SelectCell.OnSelectC
|
||||
<!-- property Visibility: protected -->
|
||||
<element name="TCustomGrid.DefaultColWidth">
|
||||
<short>Default value for the width of newly created grid columns.</short>
|
||||
<descr>
|
||||
<p>If new columns of the grid are created by changing the <link id="TCustomGrid.DefaultColWidth.ColCount">ColCount</link> property, the width of these new columns will be set to the value of the <i>DefaultColWidth</i> property. </p>
|
||||
<p>After that the user may redefine this value. If the <link id="TCustomGrid.DefaultColWidth.Options">Options</link> property includes the appropriate value, the column width may also be changed by the user at runtime.</p>
|
||||
<descr><p>If new columns of the grid are created by changing the <link id="TCustomGrid.ColCount">ColCount</link> property, the width of these new columns will be set to the value of the <i>DefaultColWidth</i> property. </p><p>Use 0 for autosized width. </p><p>Use <link id="TCustomGrid.GetRealDefaultColWidth">GetRealDefaultColWidth</link> for real value.</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomGrid.DefaultRowHeight"/>
|
||||
@ -4053,9 +4051,7 @@ Application developers should use the <link id="TCustomGrid.SelectCell.OnSelectC
|
||||
<!-- property Visibility: protected -->
|
||||
<element name="TCustomGrid.DefaultRowHeight">
|
||||
<short>Default value for the height of newly created grid rows.</short>
|
||||
<descr>
|
||||
<p>If new rows of the grid are created by changing the <link id="TCustomGrid.DefaultRowHeight.RowCount">RowCount</link> property, the height of these new rows will be set to the value of the <i>DefaultRowHeight</i> property. </p>
|
||||
<p>After that the user may redefine this value. If the <link id="TCustomGrid.DefaultRowHeight.Options">Options</link> property includes the appropriate value, the row height may also be changed by the user at runtime.</p>
|
||||
<descr><p>If new rows of the grid are created by changing the <link id="TCustomGrid.RowCount">RowCount</link> property, the height of these new rows will be set to the value of the <i>DefaultRowHeight</i> property. </p><p>Use 0 for autosized height. </p><p>Use <link id="TCustomGrid.GetRealDefaultRowHeight">GetRealDefaultRowHeight</link> for real value.</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomGrid.DefaultColWidth"/>
|
||||
|
Loading…
Reference in New Issue
Block a user