+ def IsEllipsized(*args, **kwargs):
+ """IsEllipsized(self) -> bool"""
+ return _controls_.StaticText_IsEllipsized(*args, **kwargs)
+
+ def RemoveMarkup(*args, **kwargs):
+ """
+ RemoveMarkup(String str) -> String
+
+ Removes the markup accepted by wx.StaticText when wx.ST_MARKUP is
+ used, and then returns the cleaned string.
+
+ """
+ return _controls_.StaticText_RemoveMarkup(*args, **kwargs)
+
+ RemoveMarkup = staticmethod(RemoveMarkup)
+ def EscapeMarkup(*args, **kwargs):
+ """
+ EscapeMarkup(String str) -> String
+
+ Escapes the alls special symbols (<>"'&) present inside the given
+ string using the corresponding entities (< > " '
+ &)
+ """
+ return _controls_.StaticText_EscapeMarkup(*args, **kwargs)
+
+ EscapeMarkup = staticmethod(EscapeMarkup)