X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2edb0bdef6238c8c246b6978bc14828b7033d931..85136e3bf5dadf921652519e71da5db351fb3194:/docs/latex/wx/autoobj.tex diff --git a/docs/latex/wx/autoobj.tex b/docs/latex/wx/autoobj.tex index 526e05873c..bd20fa6de8 100644 --- a/docs/latex/wx/autoobj.tex +++ b/docs/latex/wx/autoobj.tex @@ -12,11 +12,11 @@ gets the current Excel instance, and if it exists, makes the active cell bold. \begin{verbatim} wxAutomationObject excelObject; if (excelObject.GetInstance("Excel.Application")) - excelObject.PutProperty("ActiveCell.Font.Bold", TRUE); + excelObject.PutProperty("ActiveCell.Font.Bold", true); \end{verbatim} } -Note that this class works under Windows only, and currently only for Visual C++. +Note that this class obviously works under Windows only. \wxheading{Derived from} @@ -26,6 +26,10 @@ Note that this class works under Windows only, and currently only for Visual C++ +\wxheading{Library} + +\helpref{wxCore}{librarieslist} + \wxheading{See also} \helpref{wxVariant}{wxvariant} @@ -78,8 +82,8 @@ needing to call GetProperty several times using several temporary objects. For e \constfunc{bool}{CreateInstance}{\param{const wxString\&}{ classId}} -Creates a new object based on the class id, returning TRUE if the object was successfully created, -or FALSE if not. +Creates a new object based on the class id, returning true if the object was successfully created, +or false if not. \membersection{wxAutomationObject::GetDispatchPtr}\label{wxautomationobjectgetdispatchptr} @@ -92,14 +96,14 @@ Gets the IDispatch pointer. \constfunc{bool}{GetInstance}{\param{const wxString\&}{ classId}} Retrieves the current object associated with a class id, and attaches the IDispatch pointer -to this object. Returns TRUE if a pointer was successfully retrieved, FALSE otherwise. +to this object. Returns true if a pointer was successfully retrieved, false otherwise. Note that this cannot cope with two instances of a given OLE object being active simultaneously, such as two copies of Excel running. Which object is referenced cannot currently be specified. \membersection{wxAutomationObject::GetObject}\label{wxautomationobjectgetobject} -\constfunc{bool}{GetObject}{\param{wxAutomationObject\&}{obj} \param{const wxString\&}{ property}, +\constfunc{bool}{GetObject}{\param{wxAutomationObject\&}{obj}, \param{const wxString\&}{ property}, \param{int}{ noArgs = 0}, \param{wxVariant }{args[] = NULL}} Retrieves a property from this object, assumed to be a dispatch pointer, and initialises {\it obj} with it. @@ -162,7 +166,7 @@ DISPATCH\_METHOD.} \wxheading{Return value} -TRUE if the operation was successful, FALSE otherwise. +true if the operation was successful, false otherwise. \wxheading{Remarks}