:: com :: sun :: star :: frame ::

struct DispatchStatement
Description
represents a dispatch statement from a recorded macro
Since version
OpenOffice.org 1.1

Elements' Summary
aCommand specifies the dispatch command
aTarget specifies the frame target
aArgs specifies the dispatch command arguments
nFlags specifies the optional search flags
bIsComment specifies if this statement should be recorded as commented out or not
Elements' Details
aCommand
string aCommand;
Description
specifies the dispatch command

That means the URL parameter of a corresponding XDispatchProvider::queryDispatch() request.

aTarget
string aTarget;
Description
specifies the frame target

That means the TargetFrameName parameter of a corresponding XDispatchProvider::queryDispatch() request.

aArgs
sequence< ::com::sun::star::beans::PropertyValue > aArgs;
Description
specifies the dispatch command arguments

That means the Arguments parameter of a corresponding XDispatch::dispatch() request.

nFlags
long nFlags;
Description
specifies the optional search flags

That means the SearchFlags parameter of a corresponding XDispatchProvider::queryDispatch() request.

bIsComment
boolean bIsComment;
Description
specifies if this statement should be recorded as commented out or not
See also
XDispatchRecorder::recordDispatchAsComment()
Top of Page