|
TCustomRichView.AddCheckpoint, AddCheckpointTag, AddNamedCheckpoint, AddNamedCheckpointEx, AddNamedCheckpointExTag |
Top Previous Next |
|
These methods add checkpoint to the end of document. function AddNamedCheckpointExTag(const CpName: String; RaiseEvent: Boolean; Tag: Integer): Integer;
function AddCheckpoint: Integer; function AddCheckpointTag(Tag: Integer): Integer; function AddNamedCheckpoint(const CpName: String): Integer; function AddNamedCheckpointEx(const CpName: String; RaiseEvent: Boolean): Integer; AddCheckpoint, AddCheckpointTag, AddNamedCheckpoint, AddNamedCheckpointEx provide subsets of functionality of AddNamedCheckpointExTag:
Checkpoints are not items, but the methods for appending checkpoints are similar to methods for appending items. This checkpoint will be associated with the next appended item.
Parameters: CpName – name of checkpoint. This is an ANSI string, regardless of Unicode mode of text styles. RaiseEvent – "raise event" flag, see OnCheckpointVisible Tag – tag of checkpoint. Return value: Index of the added checkpoint
Methods type:
See also methods: See also methods of TRichViewEdit: See also:
|