fixed ToDouble/Long desc

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7669 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-07-03 06:54:15 +00:00
parent 2e18172773
commit 792a17440e

View File

@@ -905,28 +905,43 @@ Same as \helpref{Mid}{wxstringmid}.
\membersection{wxString::ToDouble}\label{wxstringtodouble}
\constfunc{bool}{To}{\param{double}{ *val}}
\constfunc{bool}{ToDouble}{\param{double}{ *val}}
Attempts to convert the string to a floating point number. Returns TRUE on
success (the number is stored in the location pointed to by {\it val}) or FALSE
if the string does not represent such number.
\wxheading{See also}
\helpref{wxString::ToLong}{wxstringtolong},\\
\helpref{wxString::ToULong}{wxstringtoulong}
\membersection{wxString::ToLong}\label{wxstringtolong}
\constfunc{bool}{To}{\param{long}{ *val}}
\constfunc{bool}{ToLong}{\param{long}{ *val}}
Attempts to convert the string to a signed integer. Returns TRUE on success
(the number is stored in the location pointed to by {\it val}) or FALSE if the
string does not represent such number.
\wxheading{See also}
\helpref{wxString::ToDouble}{wxstringtodouble},\\
\helpref{wxString::ToULong}{wxstringtoulong}
\membersection{wxString::ToULong}\label{wxstringtoulong}
\constfunc{bool}{To}{\param{unsigned long}{ *val}}
\constfunc{bool}{ToULong}{\param{unsigned long}{ *val}}
Attempts to convert the string to an unsigned integer. Returns TRUE on success
(the number is stored in the location pointed to by {\it val}) or FALSE if the
string does not represent such number.
\wxheading{See also}
\helpref{wxString::ToDouble}{wxstringtodouble},\\
\helpref{wxString::ToLong}{wxstringtolong}
\membersection{wxString::Trim}\label{wxstringtrim}
\func{wxString\&}{Trim}{\param{bool}{ fromRight = TRUE}}