Search found 4 matches

by Kverde
Fri Jun 14, 2019 12:41 pm
Forum: Support
Topic: Undo of set editor background
Replies: 10
Views: 48059

Re: Undo of set editor background

Sergey Tkachenko wrote: Fri Jun 14, 2019 11:32 am Чтобы все было правильно, в конец DoChangeBackgroundColor нужно добавить Editor.Change.
в этом случае Redo очередь не активизируется
есть какое нибудь решение?
в лоб вижу класс добавить TRedoBackColor
by Kverde
Fri Jun 14, 2019 8:26 am
Forum: Support
Topic: Undo of set editor background
Replies: 10
Views: 48059

Re:


This function is not implemented, but I can show how to implement it.

uses RVUndo, RVRVData, RVERVData;

type
TRVUndoBackgroundColor = class (TRVUndoInfo)
private
FBackgroundColor: TColor;
public
function RequiresFormat: Boolean; override;
procedure Undo(RVData: TRichViewRVData); override ...
by Kverde
Wed Mar 12, 2014 5:53 am
Forum: Support
Topic: How to mix different page formats in one document?
Replies: 1
Views: 9631

How to mix different page formats in one document?

Is there a way to mix A4 and A5 page formats in one document?
by Kverde
Wed Jan 29, 2014 11:27 am
Forum: ScaleRichView
Topic: TDateTimePicker in ScaleRichView does not work correctly
Replies: 1
Views: 18163

TDateTimePicker in ScaleRichView does not work correctly

I used this code to insert a TDateTimePicker control into the ScaleRichView
var
c: TDateTimePicker;
begin
c := TFwkDatePicker.Create(nil);
c.Parent := DBSRichViewEdit1.ActiveEditor;
c.Name := 'DatePicker';
c.Kind := dtkDate;
DBSRichViewEdit1.ActiveEditor.InsertControl('teste', c ...