1 \section{\class{wxAutomationObject
}}\label{wxautomationobject
}
3 The
{\bf wxAutomationObject
} class represents an OLE automation object containing a single data member,
4 an IDispatch pointer. It contains a number of functions that make it easy to perform
5 automation operations, and set and get properties. The class makes heavy use of the
\helpref{wxVariant
}{wxvariant
} class.
7 The usage of these classes is quite close to OLE automation usage in Visual Basic. The API is
8 high-level, and the application can specify multiple properties in a single string. The following example
9 gets the current Excel instance, and if it exists, makes the active cell bold.
13 wxAutomationObject excelObject;
14 if (excelObject.GetInstance("Excel.Application"))
15 excelObject.PutProperty("ActiveCell.Font.Bold", TRUE);
19 Note that this class works under Windows only, and currently only for Visual C++.
21 \wxheading{Derived from
}
23 \helpref{wxObject
}{wxobject
}
25 \wxheading{Include files
}
27 <wx/msw/ole/automtn.h>
31 \helpref{wxVariant
}{wxvariant
}
33 \latexignore{\rtfignore{\wxheading{Members
}}}
35 \membersection{wxAutomationObject::wxAutomationObject
}\label{wxautomationobjectctor
}
37 \func{}{wxAutomationObject
}{\param{WXIDISPATCH*
}{ dispatchPtr = NULL
}}
39 Constructor, taking an optional IDispatch pointer which will be released when the
42 \membersection{wxAutomationObject::
\destruct{wxAutomationObject
}}\label{wxautomationobjectdtor
}
44 \func{}{\destruct{wxAutomationObject
}}{\void}
46 Destructor. If the internal IDispatch pointer is non-null, it will be released.
48 \membersection{wxAutomationObject::CallMethod
}\label{wxautomationobjectcallmethod
}
50 \constfunc{wxVariant
}{CallMethod
}{\param{const wxString\&
}{ method
},
\param{int
}{ noArgs
},
51 \param{wxVariant
}{args
[]}}
53 \constfunc{wxVariant
}{CallMethod
}{\param{const wxString\&
}{ method
},
\param{...
}{}}
55 Calls an automation method for this object. The first form takes a method name, number of
56 arguments, and an array of variants. The second form takes a method name and zero to six
57 constant references to variants. Since the variant class has constructors for the basic
58 data types, and C++ provides temporary objects automatically, both of the following lines
59 are syntactically valid:
63 wxVariant res = obj.CallMethod("Sum", wxVariant(
1.2), wxVariant(
3.4));
64 wxVariant res = obj.CallMethod("Sum",
1.2,
3.4);
68 Note that
{\it method
} can contain dot-separated property names, to save the application
69 needing to call GetProperty several times using several temporary objects. For example:
73 object.CallMethod("ActiveCell.Font.ShowDialog", "My caption");
77 \membersection{wxAutomationObject::CreateInstance
}\label{wxautomationobjectcreateinstance
}
79 \constfunc{bool
}{CreateInstance
}{\param{const wxString\&
}{ classId
}}
81 Creates a new object based on the class id, returning TRUE if the object was successfully created,
84 \membersection{wxAutomationObject::GetDispatchPtr
}\label{wxautomationobjectgetdispatchptr
}
86 \constfunc{IDispatch*
}{GetDispatchPtr
}{\void}
88 Gets the IDispatch pointer.
90 \membersection{wxAutomationObject::GetInstance
}\label{wxautomationobjectgetinstance
}
92 \constfunc{bool
}{GetInstance
}{\param{const wxString\&
}{ classId
}}
94 Retrieves the current object associated with a class id, and attaches the IDispatch pointer
95 to this object. Returns TRUE if a pointer was succesfully retrieved, FALSE otherwise.
97 Note that this cannot cope with two instances of a given OLE object being active simultaneously,
98 such as two copies of Excel running. Which object is referenced cannot currently be specified.
100 \membersection{wxAutomationObject::GetObject
}\label{wxautomationobjectgetobject
}
102 \constfunc{bool
}{GetObject
}{\param{wxAutomationObject\&
}{obj
} \param{const wxString\&
}{ property
},
103 \param{int
}{ noArgs =
0},
\param{wxVariant
}{args
[] = NULL
}}
105 Retrieves a property from this object, assumed to be a dispatch pointer, and initialises
{\it obj
} with it.
106 To avoid having to deal with IDispatch pointers directly, use this function in preference
107 to
\helpref{wxAutomationObject::GetProperty
}{wxautomationobjectgetproperty
} when retrieving objects
110 Note that an IDispatch pointer is stored as a void* pointer in wxVariant objects.
114 \helpref{wxAutomationObject::GetProperty
}{wxautomationobjectgetproperty
}
116 \membersection{wxAutomationObject::GetProperty
}\label{wxautomationobjectgetproperty
}
118 \constfunc{wxVariant
}{GetProperty
}{\param{const wxString\&
}{ property
},
\param{int
}{ noArgs
},
119 \param{wxVariant
}{args
[]}}
121 \constfunc{wxVariant
}{GetProperty
}{\param{const wxString\&
}{ property
},
\param{...
}{}}
123 Gets a property value from this object. The first form takes a property name, number of
124 arguments, and an array of variants. The second form takes a property name and zero to six
125 constant references to variants. Since the variant class has constructors for the basic
126 data types, and C++ provides temporary objects automatically, both of the following lines
127 are syntactically valid:
131 wxVariant res = obj.GetProperty("Range", wxVariant("A1"));
132 wxVariant res = obj.GetProperty("Range", "A1");
136 Note that
{\it property
} can contain dot-separated property names, to save the application
137 needing to call GetProperty several times using several temporary objects.
139 \membersection{wxAutomationObject::Invoke
}\label{wxautomationobjectinvoke
}
141 \constfunc{bool
}{Invoke
}{\param{const wxString\&
}{ member
},
\param{int
}{ action
},
142 \param{wxVariant\&
}{retValue
},
\param{int
}{ noArgs
},
\param{wxVariant
}{ args
[]},
143 \param{const wxVariant*
}{ ptrArgs
[] =
0}}
145 This function is a low-level implementation that allows access to the IDispatch Invoke function.
146 It is not meant to be called directly by the application, but is used by other convenience functions.
148 \wxheading{Parameters
}
150 \docparam{member
}{The member function or property name.
}
152 \docparam{action
}{Bitlist: may contain DISPATCH
\_PROPERTYPUT, DISPATCH
\_PROPERTYPUTREF,
155 \docparam{retValue
}{Return value (ignored if there is no return value)
}.
157 \docparam{noArgs
}{Number of arguments in
{\it args
} or
{\it ptrArgs
}.
}
159 \docparam{args
}{If non-null, contains an array of variants.
}
161 \docparam{ptrArgs
}{If non-null, contains an array of constant pointers to variants.
}
163 \wxheading{Return value
}
165 TRUE if the operation was successful, FALSE otherwise.
169 Two types of argument array are provided, so that when possible pointers are used for efficiency.
171 \membersection{wxAutomationObject::PutProperty
}\label{wxautomationobjectputproperty
}
173 \constfunc{bool
}{PutProperty
}{\param{const wxString\&
}{ property
},
\param{int
}{ noArgs
},
174 \param{wxVariant
}{args
[]}}
176 \func{bool
}{PutProperty
}{\param{const wxString\&
}{ property
},
\param{...
}{}}
178 Puts a property value into this object. The first form takes a property name, number of
179 arguments, and an array of variants. The second form takes a property name and zero to six
180 constant references to variants. Since the variant class has constructors for the basic
181 data types, and C++ provides temporary objects automatically, both of the following lines
182 are syntactically valid:
186 obj.PutProperty("Value", wxVariant(
23));
187 obj.PutProperty("Value",
23);
191 Note that
{\it property
} can contain dot-separated property names, to save the application
192 needing to call GetProperty several times using several temporary objects.
194 \membersection{wxAutomationObject::SetDispatchPtr
}\label{wxautomationobjectsetdispatchptr
}
196 \func{void
}{SetDispatchPtr
}{\param{WXIDISPATCH*
}{ dispatchPtr
}}
198 Sets the IDispatch pointer. This function does not check if there is already an IDispatch pointer.
200 You may need to cast from IDispatch* to WXIDISPATCH* when calling this function.