Vcl.StdActns.TEditCopy

From RAD Studio API Documentation
Jump to: navigation, search

Vcl.StdActns.TEditActionVcl.ActnList.TActionVcl.ActnList.TCustomActionSystem.Actions.TContainedActionSystem.Classes.TBasicActionSystem.Classes.TComponentSystem.Classes.TPersistentSystem.TObjectTEditCopy

Delphi

TEditCopy = class(TEditAction)

C++

class PASCALIMPLEMENTATION TEditCopy : public TEditAction

Properties

Type Visibility Source Unit Parent
class public
Vcl.StdActns.pas
Vcl.StdActns.hpp
Vcl.StdActns Vcl.StdActns

Description

TEditCopy copies the selected text in a target edit control to the Windows clipboard.

Add TEditCopy to an action list to allow users to copy selected text to the clipboard using menu items or toolbar buttons. Controls such as menu items and tool buttons linked to this action cause the application to copy the currently selected text in an active text control to the clipboard.

TEditCopy is designed to work with an edit control (TCustomEdit descendant) as a target. It automatically disables itself if the active control in a form is not an edit control or if that edit control does not have any text selected.

See Also