document all overloads of DrawText()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56916 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2008-11-22 22:40:36 +00:00
parent 091111d693
commit 5a3955662a

View File

@ -398,11 +398,20 @@ public:
//@{ //@{
/** /**
Draws a text at the defined position, at the given angle. Draws a text at the defined position.
If @a angle is specified, the string is drawn at the given angle to the
(default) horizontal direction. If @a backgroundBrush is specified, the
text is filled using it.
*/ */
void DrawText(const wxString& str, wxDouble x, wxDouble y, void DrawText(const wxString& str, wxDouble x, wxDouble y,
wxDouble angle); wxDouble angle);
void DrawText(const wxString& str, wxDouble x, wxDouble y); void DrawText(const wxString& str, wxDouble x, wxDouble y);
void DrawText(const wxString& str, wxDouble x, wxDouble y,
const wxGraphicsBrush& backgroundBrush)
void DrawText(const wxString& str, wxDouble x, wxDouble y,
wxDouble angle,
const wxGraphicsBrush& backgroundBrush )
//@} //@}
/** /**