summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2018-07-06 13:49:59 +0200
committerMitch Curtis <mitch.curtis@qt.io>2018-07-23 13:15:33 +0000
commit9c43f82fb5648d7a0dcac4329a59d5d274924339 (patch)
treecf6e9c573f776e17db5ff813555b57375cfac300
parent5d2429301fdd26d404d1ec15a32edb0882e311cd (diff)
downloadqtquickcontrols-9c43f82fb5648d7a0dcac4329a59d5d274924339.tar.gz
Document the default value of TableView's overridden frameVisible property
The property is actually already listed in the inherited members section of the documentation, but the default value listed there is false, which is not the case for TableView since it overrides it. Add documentation for the property in TableView, so that it shows up in the inherited section as defaulting to false, and again in TableView's own properties section as defaulting to true. Task-number: QTBUG-64049 Change-Id: Ia3d304cdf1bd34f9d88af388ae04a3ed4a686fbd Reviewed-by: Venugopal Shivashankar <Venugopal.Shivashankar@qt.io>
-rw-r--r--src/controls/doc/src/qtquickcontrols-tableview.qdoc9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/controls/doc/src/qtquickcontrols-tableview.qdoc b/src/controls/doc/src/qtquickcontrols-tableview.qdoc
index 9d43c6a6..2215fcf4 100644
--- a/src/controls/doc/src/qtquickcontrols-tableview.qdoc
+++ b/src/controls/doc/src/qtquickcontrols-tableview.qdoc
@@ -130,6 +130,15 @@
The default value is \c -1 to indicate that no row is selected.
*/
+/*!
+ \qmlproperty bool BasicTableView::frameVisible
+
+ This property tells the TableView if it should render
+ a frame around its content.
+
+ The default value is \c true.
+*/
+
/*! \qmlsignal TableView::activated(int row)
Emitted when the user activates an item by mouse or keyboard interaction.