From a7288e417994f1e3c488142f2fa8c3c44a1de24a Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 10 Jan 2014 05:15:46 +0000 Subject: [PATCH] Add doc for wxFlexGridSizer::GetRowHeights and GetColWidths git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75579 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();