Search found 9827 matches

by Sergey Tkachenko
Wed Feb 18, 2026 7:42 pm
Forum: Support
Topic: TRVFontComboBox and Modified
Replies: 7
Views: 5136

Re: TRVFontComboBox and Modified

Implemented in TRichView 24.1
by Sergey Tkachenko
Wed Feb 18, 2026 7:41 pm
Forum: Support
Topic: Horizontal Line and Style
Replies: 1
Views: 2388

Re: Horizontal Line and Style

Horizontal lines are inserted with the 0-th paragraph style.
When RichViewActions create a new document, they create the 0-th paragraph style linked with "Normal" styletemplate.
by Sergey Tkachenko
Tue Feb 17, 2026 8:22 am
Forum: RVMedia
Topic: RVCamera unter Delphi 10.4 funktioniert nicht über Citrix („Interface nicht unterstützt“)
Replies: 1
Views: 1815

Re: RVCamera unter Delphi 10.4 funktioniert nicht über Citrix („Interface nicht unterstützt“)

How do you try to play video from this camera using RVMedia?
Can you give me a temporary access to this camera's stream?
by Sergey Tkachenko
Tue Feb 17, 2026 8:19 am
Forum: RVMedia
Topic: Playing video files using RVCamera
Replies: 3
Views: 1506

Re: Playing video files using RVCamera

TRVCamera does not support playing audio using GStreamer. But FFmpeg must work.
Make sure that RVCamera.FFMpegProperty.Audio = True.
Can you send me a link to these video files?
by Sergey Tkachenko
Mon Feb 09, 2026 11:05 am
Forum: ScaleRichView
Topic: set BottomMargin with Footer Height
Replies: 8
Views: 4245

Re: set BottomMargin with Footer Height

Try to reformat the editor not as SRichViewEdit.RichViewEdit.Format, but as SRichViewEdit.Format.
by Sergey Tkachenko
Tue Feb 03, 2026 7:10 pm
Forum: ScaleRichView
Topic: set BottomMargin with Footer Height
Replies: 8
Views: 4245

Re: set BottomMargin with Footer Height

Please send me a project (as simple as possible) reproducing this problem.
by Sergey Tkachenko
Sun Feb 01, 2026 5:00 pm
Forum: ScaleRichView
Topic: set BottomMargin with Footer Height
Replies: 8
Views: 4245

Re: set BottomMargin with Footer Height

I mean, this is the formula used by ScaleRichView internally.

Does your footer has height greater than 1/3 of page height?
by Sergey Tkachenko
Sat Jan 31, 2026 1:53 pm
Forum: ScaleRichView
Topic: set BottomMargin with Footer Height
Replies: 8
Views: 4245

Re: set BottomMargin with Footer Height

Why do you want to do it?
ScaleRichView displays bottom margin large enough to include footer, even if PageProperty.BottomMargin is small (but the limit of 1/3 page height).
I.e.,
visible_bottom_margin = max(
PageProperty.BottomMargin,
min(PageProperty.FooterY + footer_height, PageProperty ...
by Sergey Tkachenko
Sat Jan 31, 2026 12:27 pm
Forum: Support
Topic: Font Size ComboBox becomes empty after manual Font Name entry
Replies: 1
Views: 1533

Re: Font Size ComboBox becomes empty after manual Font Name entry

It's by design.
This combobox is empty when the selected font does not exist or unavailable.

The font 'Aptos' is usually not available for non-Microsoft applications (you can check, can you see it in the font combobox?), so the font size combobox does not show suggestions for it. But the combobox ...
by Sergey Tkachenko
Sat Jan 31, 2026 12:00 pm
Forum: Support
Topic: Setting a Style
Replies: 4
Views: 3216

Re: Setting a Style

1) Do you want to apply the default font to new documents?
Find "Normal" item in rvActionNew.StyleTemplates, and assign it properties:
TextStyle.FontName := 'Georgia';
ValidTextProperties := ValidTextProperties + [rvfiFontName];
You can do it at designtime, or at runtime before the first execution ...
by Sergey Tkachenko
Wed Jan 28, 2026 9:49 am
Forum: Support
Topic: Setting a Style
Replies: 4
Views: 3216

Re: Setting a Style

This is by design,

Your text has font "Georgia" applied on top of properties defined by its styletemplate.

When you apply a styletemplate, the results depend on the selection. If the selection contains multiple paragraphs, the styletemplate is applied only to paragraph properties. Text properties ...
by Sergey Tkachenko
Mon Jan 26, 2026 6:38 pm
Forum: Support
Topic: Hyperlink Underline Color
Replies: 6
Views: 3080

Re: Hyperlink Underline Color

This code must work:

procedure TForm1.FormCreate(Sender: TObject);
var
i: integer;
begin
i := RVEFilervActionNew1.StyleTemplates.FindByName(RVHYPERLINKSTYLETEMPLATENAME);
RVEFilervActionNew1.StyleTemplates[i].ValidTextProperties := [rvfiUnderline,rvfiColor,rvfiJump,rvfiUnderlineColor ...
by Sergey Tkachenko
Mon Jan 26, 2026 6:11 pm
Forum: Support
Topic: Reset StyleTemplates
Replies: 2
Views: 1966

Re: Reset StyleTemplates

There is no special method to reset StyleTemplates.

If you want to remove them in code, do it in the way shown in the topic https://www.trichview.com/help/idh_trichviewedit_changestyletemplates.html

RVStyleTmp.Units := RichViewEdit1.Style.Units;
RVStyleTmp.StyleTemplates.AssignStyleTemplates ...
by Sergey Tkachenko
Mon Jan 26, 2026 4:48 pm
Forum: Support
Topic: Hyperlink Underline Color
Replies: 6
Views: 3080

Re: Hyperlink Underline Color

I made the following test:

In the ActionTest demo, I edited rvActionNew1.StyleTemplates at design time. For "Hyperlink" item, I changed:
Color = clWindowText
UnderlineColor = clAqua
ValidTextPropertiesEditor (this is how ValidTextProperties are called in the Object Inspector) = [rvfiUnderline ...
by Sergey Tkachenko
Fri Jan 16, 2026 11:38 am
Forum: Support
Topic: Resetting Text Style for Selected Items Without Losing Hyperlinks
Replies: 3
Views: 2906

Re: Resetting Text Style for Selected Items Without Losing Hyperlinks

When style templates are used, ApplyStyleTemplate(-1) does the same work as MS Word: paragraphs are formatted using "Normal" styletemplate, hyperlinks are formatted using "Hyperlink" styletemplate, all other attributes are removed.

Without styletemplates, we need to answer to additional questions ...