• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/ole/

Lines Matching refs:property

156     // if doing a property put(ref), we need to adjust the first argument to have a
298 // Get/Set property
299 wxVariant wxAutomationObject::GetPropertyArray(const wxString& property, int noArgs, const wxVariant **args) const
302 if (!Invoke(property, DISPATCH_PROPERTYGET, retVariant, noArgs, NULL, args))
308 wxVariant wxAutomationObject::GetProperty(const wxString& property, int noArgs, wxVariant args[]) const
311 if (!Invoke(property, DISPATCH_PROPERTYGET, retVariant, noArgs, args))
318 wxVariant wxAutomationObject::GetProperty(const wxString& property,
356 if (!Invoke(property, DISPATCH_PROPERTYGET, retVariant, i, NULL, args))
364 bool wxAutomationObject::PutProperty(const wxString& property, int noArgs, wxVariant args[])
367 if (!Invoke(property, DISPATCH_PROPERTYPUT, retVariant, noArgs, args))
374 bool wxAutomationObject::PutPropertyArray(const wxString& property, int noArgs, const wxVariant **args)
377 if (!Invoke(property, DISPATCH_PROPERTYPUT, retVariant, noArgs, NULL, args))
384 bool wxAutomationObject::PutProperty(const wxString& property,
422 bool ret = Invoke(property, DISPATCH_PROPERTYPUT, retVariant, i, NULL, args);
432 WXIDISPATCH* wxAutomationObject::GetDispatchProperty(const wxString& property, int noArgs, wxVariant args[]) const
435 if (Invoke(property, DISPATCH_PROPERTYGET, retVariant, noArgs, args))
450 WXIDISPATCH* wxAutomationObject::GetDispatchProperty(const wxString& property, int noArgs, const wxVariant **args) const
453 if (Invoke(property, DISPATCH_PROPERTYGET, retVariant, noArgs, NULL, args))
466 bool wxAutomationObject::GetObject(wxAutomationObject& obj, const wxString& property, int noArgs, wxVariant args[]) const
468 WXIDISPATCH* dispatch = GetDispatchProperty(property, noArgs, args);
479 bool wxAutomationObject::GetObject(wxAutomationObject& obj, const wxString& property, int noArgs, const wxVariant **args) const
481 WXIDISPATCH* dispatch = GetDispatchProperty(property, noArgs, args);
931 wsprintf(szBuf, L"%s: method or property not found.", szMember);