TdxRichEditControlBase.Cut Method
Moves the current selection to the clipboard.
Declaration
procedure Cut;
Remarks
You can call Copy, Cut
, and Paste procedures to execute corresponding clipboard operations in the Rich Edit control if they are currently available.
Cut Operation Availability
A Cut
procedure call moves the current selection to the clipboard when the following conditions are met:
- The ReadOnly property is set to
False
. - The Options.Behavior.Cut property is set to TdxDocumentCapability.Default or TdxDocumentCapability.Enabled.
Otherwise, a Cut
procedure call has no effect.
Related End-User Command
A Cut
procedure call produces the same effect as the Cut Selection command.
See Also