SHDocVw.OLECMDF

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type OLECMDF = Cardinal;

C++

typedef Winapi::Activex::TOleEnum OLECMDF;

Properties

Type Visibility Source Unit Parent
type
typedef
public
SHDocVw.pas
SHDocVw.hpp
SHDocVw SHDocVw

Description

OLECMDF represents the type of support an Automation object provides for a specific command at a specific time.

In C++ code imported from the shdocvw type library, OLECMDF is a set of flags that together indicate how a command can be used. These values can be or'd together:



Value Meaning

OLECMDF_SUPPORTED

The Automation object supports the command (but it may not be enabled).

OLECMDF_ENABLED

The command is currently enabled.

OLECMDF_LATCHED

The command is an on/off toggle that is currently on.

OLECMDF_NINCHED

Not currently used.

OLECMDF_INVISIBLE

Not currently used.

OLECMDF_DEFHIDEONCTXTMENU

Not currently used.


See Also