Reference

The COM object is a QAxObject with the CLSID .

Interfaces

Event Interfaces

Public Slots:

Signals:

Properties:


Member Type Documentation

__MIDL___MIDL_itf_automation_0262_0001

__MIDL___MIDL_itf_automation_0262_0002

__MIDL___MIDL_itf_automation_0262_0003

__MIDL___MIDL_itf_automation_0262_0004

__MIDL___MIDL_itf_automation_0262_0005

__MIDL___MIDL_itf_automation_0262_0006

__MIDL___MIDL_itf_automation_0262_0007


Member Function Documentation

IDispatch* Application () [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Application()));

Or call the function directly:

	QAxObject * result = object->querySubObject("Application()");

IMathInterface* MathInterface () [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(MathInterface()));

Or call the function directly:

	IMathInterface* result = object->dynamicCall("MathInterface()").toInt();

IDispatch* Metadata () [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Metadata()));

Or call the function directly:

	QAxObject * result = object->querySubObject("Metadata()");

IDispatch* Parent () [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Parent()));

Or call the function directly:

	QAxObject * result = object->querySubObject("Parent()");

void SetRelativeAndURL (bool bVal, QString url) [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal(bool, QString)), object, SLOT(SetRelativeAndURL(bool, QString)));

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("SetRelativeAndURL(bool, QString)", params);

void SetRelativePath (bool bVal) [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetRelativePath(bool)));

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("SetRelativePath(bool)", params);

QString Tag () [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Tag()));

Or call the function directly:

	QString result = object->dynamicCall("Tag()").toString();

QString ToString () [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ToString()));

Or call the function directly:

	QString result = object->dynamicCall("ToString()").toString();

__MIDL___MIDL_itf_automation_0262_0004 Type () [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Type()));

Or call the function directly:

	__MIDL___MIDL_itf_automation_0262_0004 result = object->dynamicCall("Type()").toInt();

int X () [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(X()));

Or call the function directly:

	int result = object->dynamicCall("X()").toInt();

int Y () [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Y()));

Or call the function directly:

	int result = object->dynamicCall("Y()").toInt();

void exception (int code, QString source, QString disc, QString help) [signal]

Connect a slot to this signal:

	QObject::connect(object, SIGNAL(exception(int, QString, QString, QString)), receiver, SLOT(someSlot(int, QString, QString, QString)));

void propertyChanged (QString name) [signal]

Connect a slot to this signal:

	QObject::connect(object, SIGNAL(propertyChanged(QString)), receiver, SLOT(someSlot(QString)));

void signal (QString name, int argc, void* argv) [signal]

Connect a slot to this signal:

	QObject::connect(object, SIGNAL(signal(QString, int, void*)), receiver, SLOT(someSlot(QString, int, void*)));

Property Documentation

QString objectName

Read this property's value using QObject::property:

	QString val = object->property("objectName").toString();
Set this property' value using QObject::setProperty:
	QString newValue = ...
	object->setProperty("objectName", newValue);
Or using the setObjectName slot.

IDispatch* Application

Read this property's value using QObject::property:

	IDispatch* val = object->property("Application").toIDispatch*();

IMathInterface* MathInterface

This property is of an unsupported type.

IDispatch* Metadata

Read this property's value using QObject::property:

	IDispatch* val = object->property("Metadata").toIDispatch*();

IDispatch* Parent

Read this property's value using QObject::property:

	IDispatch* val = object->property("Parent").toIDispatch*();

QString Tag

Read this property's value using QObject::property:

	QString val = object->property("Tag").toString();

__MIDL___MIDL_itf_automation_0262_0004 Type

Read this property's value using QObject::property:

	int val = object->property("Type").toInt();

See also __MIDL___MIDL_itf_automation_0262_0004.

int X

Read this property's value using QObject::property:

	int val = object->property("X").toInt();

int Y

Read this property's value using QObject::property:

	int val = object->property("Y").toInt();

QString control

Read this property's value using QObject::property:

	QString val = object->property("control").toString();
Set this property' value using QObject::setProperty:
	QString newValue = ...
	object->setProperty("control", newValue);
Or using the setControl slot.