+ /**
+ Returns the stack of strings pushed (see PushStatusText()) on the
+ @a n-th field.
+
+ See wxStatusBarPane::GetStack() for more info.
+ */
+ const wxArrayString& GetStatusStack(int n) const
+ { return m_panes[n].GetStack(); }
+
+ /**
+ Returns the width of the @a n-th field.
+
+ See wxStatusBarPane::GetWidth() for more info.
+ */
+ int GetStatusWidth(int n) const
+ { return m_panes[n].GetWidth(); }
+
+ /**
+ Returns the style of the @a n-th field.
+
+ See wxStatusBarPane::GetStyle() for more info.
+ */
+ int GetStatusStyle(int n) const
+ { return m_panes[n].GetStyle(); }
+