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

void Activate () [slot]

Connect a signal to this slot:

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

Or call the function directly:

	object->dynamicCall("Activate()");

void ScrollTo (int X, int Y) [slot]

Connect a signal to this slot:

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

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("ScrollTo(int, int)", params);

void ScrollToRegion (IMathcadRegion* pRegion) [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal(IMathcadRegion*)), object, SLOT(ScrollToRegion(IMathcadRegion*)));

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("ScrollToRegion(IMathcadRegion*)", params);

void SetHeight (int Height) [slot]

Connect a signal to this slot:

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

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("SetHeight(int)", params);

void SetLeft (int Left) [slot]

Connect a signal to this slot:

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

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("SetLeft(int)", params);

void SetTop (int Top) [slot]

Connect a signal to this slot:

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

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("SetTop(int)", params);

void SetWidth (int Width) [slot]

Connect a signal to this slot:

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

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("SetWidth(int)", params);

void SetWindowState (__MIDL___MIDL_itf_automation_0262_0003 WindowState) [slot]

Connect a signal to this slot:

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

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("SetWindowState(__MIDL___MIDL_itf_automation_0262_0003)", params);

void SetZoom (int Zoom) [slot]

Connect a signal to this slot:

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

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("SetZoom(int)", params);

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*();

int Height

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

	int val = object->property("Height").toInt();
Set this property' value using QObject::setProperty:
	int newValue = ...
	object->setProperty("Height", newValue);
Or using the SetHeight slot.

int Left

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

	int val = object->property("Left").toInt();
Set this property' value using QObject::setProperty:
	int newValue = ...
	object->setProperty("Left", newValue);
Or using the SetLeft slot.

IDispatch* Parent

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

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

int Top

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

	int val = object->property("Top").toInt();
Set this property' value using QObject::setProperty:
	int newValue = ...
	object->setProperty("Top", newValue);
Or using the SetTop slot.

int Width

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

	int val = object->property("Width").toInt();
Set this property' value using QObject::setProperty:
	int newValue = ...
	object->setProperty("Width", newValue);
Or using the SetWidth slot.

__MIDL___MIDL_itf_automation_0262_0003 WindowState

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

	int val = object->property("WindowState").toInt();
Set this property' value using QObject::setProperty:
	int newValue = ... // string representation of values also supported
	object->setProperty("WindowState", newValue);
Or using the SetWindowState slot.

See also __MIDL___MIDL_itf_automation_0262_0003.

IDispatch* Worksheet

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

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

int Zoom

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

	int val = object->property("Zoom").toInt();
Set this property' value using QObject::setProperty:
	int newValue = ...
	object->setProperty("Zoom", newValue);
Or using the SetZoom slot.

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.