DesignIntf.IDesignerSelections

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

IDesignerSelections = interface

C++

__interface  INTERFACE_UUID("{7ED7BF30-E349-11D3-AB4A-00C04FB17A72}") IDesignerSelections  : public System::IInterface

Properties

Type Visibility Source Unit Parent
interface
class
public
DesignIntf.pas
DesignIntf.hpp
DesignIntf DesignIntf

Description

IDesignerSelections represents a list of persistent objects.

The form designer uses IDesignerSelections to get or set a list of those objects that are selected.

IDesignerSelections provides properties and methods to:

  • Add objects to the list.
  • Compare two lists of objects.
  • Access individual objects in the list.

Note: C++ method declarations that use IDesignerSelections use the _di_IDesignerSelections type instead. This is a DelphiInterface wrapper around the IDesignerSelections interface:

typedef System::DelphiInterface< IDesignerSelections > _di_IDesignerSelections;


See Also