X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/954b8ae60391d18b87a604e7919c87c0c6ae208b..74c481d11721fb42343c6b79996478a2ebacde3a:/docs/latex/wx/autoobj.tex diff --git a/docs/latex/wx/autoobj.tex b/docs/latex/wx/autoobj.tex index 35467e5315..8afc07a8d9 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} @@ -74,25 +74,12 @@ needing to call GetProperty several times using several temporary objects. For e \end{verbatim} } -\membersection{wxAutomationObject::ConvertOleToVariant}\label{wxautomationobjectconvertoletovariant} - -\constfunc{bool}{ConvertOleToVariant}{\param{const VARIANTARG\&}{ oleVariant}, \param{const wxVariant\&}{ variant}} - -Converts the given VARIANTARG object to a wxVariant. IDispatch pointers are converted to the ``void*" type. - -\membersection{wxAutomationObject::ConvertVariantToOle}\label{wxautomationobjectconvertvarianttoole} - -\constfunc{bool}{ConvertVariantToOle}{\param{const wxVariant\&}{ variant}, \param{VARIANTARG\&}{ oleVariant}} - -Converts the given wxVariant object to a VARIANTARG. The ``void*" type is assumed to be an -IDispatch pointer. - \membersection{wxAutomationObject::CreateInstance}\label{wxautomationobjectcreateinstance} \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} @@ -105,7 +92,7 @@ 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 succesfully 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. @@ -175,7 +162,7 @@ DISPATCH\_METHOD.} \wxheading{Return value} -TRUE if the operation was successful, FALSE otherwise. +true if the operation was successful, false otherwise. \wxheading{Remarks}