From fe2ded62923e36dab0fdd6fb69a725d6d4fdcf17 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 10 Jan 2014 05:14:12 +0000 Subject: [PATCH] Add doc for wxFlexGridSizer::GetRowHeights and GetColWidths git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@75578 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/sizer.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/interface/wx/sizer.h b/interface/wx/sizer.h index 6eafc58946..d9ecb7acd0 100644 --- a/interface/wx/sizer.h +++ b/interface/wx/sizer.h @@ -1639,7 +1639,17 @@ public: Note that this method does not trigger relayout. */ void SetNonFlexibleGrowMode(wxFlexSizerGrowMode mode); - + + /** + Returns a read-only array containing the heights of the rows in the sizer. + */ + const wxArrayInt& GetRowHeights() const; + + /** + Returns a read-only array containing the widths of the columns in the sizer. + */ + const wxArrayInt& GetColWidths() const; + virtual void RecalcSizes(); virtual wxSize CalcMin();