LibreOffice
LibreOffice 24.2 SDK API Reference
|
provides access to information on a set of commands. More...
import"XCommandInfo.idl";
Public Member Functions | |
sequence< com::sun::star::ucb::CommandInfo > | getCommands () |
obtains information for all supported commands. More... | |
com::sun::star::ucb::CommandInfo | getCommandInfoByName ([in] string Name) raises ( com::sun::star::ucb::UnsupportedCommandException ) |
returns information for a specific command. More... | |
com::sun::star::ucb::CommandInfo | getCommandInfoByHandle ([in] long Handle) raises ( com::sun::star::ucb::UnsupportedCommandException ) |
returns information for a specific command. More... | |
boolean | hasCommandByName ([in] string Name) |
checks whether a command specific is supported. More... | |
boolean | hasCommandByHandle ([in] long Handle) |
checks whether a specific command is supported. More... | |
Public Member Functions inherited from XInterface | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. More... | |
void | acquire () |
increases the reference counter by one. More... | |
void | release () |
decreases the reference counter by one. More... | |
provides access to information on a set of commands.
com::sun::star::ucb::CommandInfo getCommandInfoByHandle | ( | [in] long | Handle | ) | |
raises | ( | com::sun::star::ucb::UnsupportedCommandException | |||
) |
returns information for a specific command.
Handle | specifies the handle of the requested command. |
UnsupportedCommandException | if the command is not supported. |
com::sun::star::ucb::CommandInfo getCommandInfoByName | ( | [in] string | Name | ) | |
raises | ( | com::sun::star::ucb::UnsupportedCommandException | |||
) |
returns information for a specific command.
Name | specifies the name of the requested command. |
UnsupportedCommandException | if the command is not supported. |
sequence<com::sun::star::ucb::CommandInfo> getCommands | ( | ) |
obtains information for all supported commands.
boolean hasCommandByHandle | ( | [in] long | Handle | ) |
checks whether a specific command is supported.
TRUE
if a command with the specified handle is supported; otherwise FALSE
is returned.Handle | specifies the handle of the requested command. |
boolean hasCommandByName | ( | [in] string | Name | ) |
checks whether a command specific is supported.
TRUE
if a command with the specified name is supported; otherwise FALSE
is returned.Name | specifies the name of the requested command. |