+// get the common set of styles for the range
+bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange& range, wxRichTextAttr& style)
+{
+ wxTextAttrEx styleEx;
+ if (GetBuffer().GetStyleForRange(range.ToInternal(), styleEx))
+ {
+ style = styleEx;
+ return true;
+ }
+ else
+ return false;
+}
+
+bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange& range, wxTextAttrEx& style)
+{
+ return GetBuffer().GetStyleForRange(range.ToInternal(), style);
+}
+