当前位置:网站首页>Setting and using richview trvstyle template style
Setting and using richview trvstyle template style
2022-07-06 06:55:00 【lyhoo163】
RichView TRVStyle Template style setting and use
One 、RichEdit Of Style
Style Four important attributes :
1、TextStyles[TextNo]
The default is 5 individual :
Serial number name
0: Normal text Arial
1: Heading Arial
2: Subheading Arial
3: Keywords Arial
4: Jump 1 Arial
5: Jump 2 Arial
2、ParaStyles[ParaNo]
The default is 2 individual :
Serial number name
0: Paragraph Style 0
1: Centered 0
3、StyleTemplates[StyleNo]
The default is 11 individual :
Serial number name
0 Normal
1 heading 1
2 heading 2
3 heading 3
4 Hyperlink
5 header
6 footer
7 footnote reference
8 endnote reference
9 footnote text
10 endnote text
4、MainStyle
The default is 0 individual ( not used ):
Two 、 Detailed instructions
1、TextStyles[TextNo] and ParaStyles[ParaNo] As a style ,TextNo and ParaNo, Not used together . Only for users AddNL Wait for function calls to use :
RVE.AddNL(Text, TextNo, ParaNo);
actually ,TextStyles[TextNo].StyleName and ParaStyles[ParaNo].StyleName, stay TextStyles and ParaStyles It doesn't make much sense when used to represent any format , We can simply ignore them ( It may be best to leave them empty , To prevent unnecessary storage XML/RVF Information in the file ).
2、StyleTemplates[StyleNo], Is the real style of software , it 0-StyleNo, All definitions TextStyles and ParaStyles, Use uniform Name.
StyleTemplates[StyleNo].Name
In the code , It can be ignored TextStyles[TextNo] and ParaStyles[ParaNo], Use it directly StyleTemplates[StyleNo].
rve.AddNL(S1,
MakeTextStyle(rvs, nil, rvs.StyleTemplates[0]),
MakeParaStyle(rvs, rvs.StyleTemplates[0]));
such as , When you put some formats ( for example , Set text to Italic ) When applied to text formatted by a text style , You may create a new text style based on the existing text style , And this new style will inherit all unmodified properties of the existing style , Include its style name . therefore , When adding a style in an editing operation ,StyleName[No] Cannot be used to identify TextStyles and ParaStyles. If you use StyleTemplates[StyleNo], Then the name of the style template has practical significance .
3、 ... and 、 Practical significance
1、TextStyles[TextNo] and ParaStyles[ParaNo] As a style of independent single document . such as : A document has 7 A text style , Yes 4 A paragraph style . You can set 0-6 Text styles , Set up 0-3 Paragraph styles . It is the call of personality style .
RVE.AddNL(Text, TextNo, ParaNo);
2、 adopt StyleTemplates Establish an industry or unit ( Or a person ), Unified and standardized style templates . When creating a document , Unified use StyleTemplates.
rve.AddNL(S1,
MakeTextStyle(rvs, nil, rvs.StyleTemplates[0]),
MakeParaStyle(rvs, rvs.StyleTemplates[0]));
Four 、TextStyles and ParaStyles The establishment of the
1、 Modify the original style
with RVHeader.Style.TextStyles[0] do begin
FontName:=' Song style '; // Font name ;
Size:=10; // font size
Color:= clBlack; // text color ;
Style:=[]; // Text style ( bold , Italics , Underline , Delete line )
Charset:=DEFAULT_CHARSET; // Font character set ( Used for the unicode Text style ).
end;
with RVHeader.Style.ParaStyles[0] do begin
FirstIndent:=0; // Indent the first line of the paragraph , use LeftIndent Summarize ;
LeftIndent:=0; // Left edge indent ;
RightIndent:=0; // Indent of the right edge ;
SpaceBefore:=0; // Space above paragraph ;
SpaceAfter:=0; // The space below the paragraph ;
LineSpacing:=200; // 200%
end;
or
RichView.Style.TextStyles.Items[0].FontName:='Monotype Corsiva';
RichView.Style.TextStyles.Items[0].Size:=15;
RichView.Style.TextStyles.Items[0].Color:=clBlack;
RichView.Style.TextStyles.Items[0].Style:=[];
RichView.Style.ParaStyles.Items[0].Alignment:=rvaJustify;
RichView.Style.ParaStyles.Items[0].LineSpacing:=100;
2、 Create a new style
RVStyle1.ParaStyles.Clear;
with RVStyle1.ParaStyles.Add do begin
StyleName := 'Paragraph 1';
Alignment := rvaLeft; // Paragraph alignment ( left, right, center, justify or distribute)
LastLineAlignment:=rvaLeft; // Align the next line of paragraphs ( Align left , Right alignment , Align center , Align or assign );
FirstIndent:=0; // Indent the first line of the paragraph
LeftIndent:=0; // Left edge indent ;
RightIndent:=0; // Indent of the right edge ;
SpaceBefore:=5; // Space above paragraph ;
SpaceAfter:=5; // The space below the paragraph ;
Border:=:bsNone; // no border
end;
with RVStyle1.ParaStyles.Add do begin
StyleName := 'Paragraph 2';
Alignment := rvaCenter; // Paragraph alignment ( left, right, center, justify or distribute)
LastLineAlignment:=rvaLeft; // Align the next line of paragraphs ( Align left , Right alignment , Align center , Align or assign );
FirstIndent:=0; // Indent the first line of the paragraph
LeftIndent:=0; // Left edge indent ;
RightIndent:=0; // Indent of the right edge ;
SpaceBefore:=5; // Space above paragraph ;
SpaceAfter:=5; // The space below the paragraph ;
Border.Style:=rvbSingle; // There's a border
Border.VisibleBorders.Top:=True; // Whether the border displays
Border.VisibleBorders.Left:=False;
Border.VisibleBorders.Right:=False;
Border.VisibleBorders.Bottom:=True;
end;
5、 ... and 、StyleTemplates Creation of template style
1、 Modification of the original style
2、 Rebuild StyleTemplates 6、 ... and 、 Find the sequence number of the specified name style
var
ParaNo, StyleNo: Integer;
HeadingStyleTemplate: TRVStyleTemplate;
...
HeadingStyleTemplate := RVStyle1.StyleTemplates.FindItemByName('heading 1');
ParaNo := MakeParaStyle(RVStyle1, HeadingStyleTemplate);
StyleNo := MakeTextStyle(RVStyle1, nil, HeadingStyleTemplate);
RichViewEdit1.AddNL('This is Heading 1', StyleNo, ParaNo);
边栏推荐
猜你喜欢
Due to high network costs, arbitrum Odyssey activities are suspended, and nitro release is imminent
开源的网易云音乐API项目都是怎么实现的?
漏了监控:Zabbix对Eureka instance状态监控
[English] Verb Classification of grammatical reconstruction -- English rabbit learning notes (2)
[brush questions] how can we correctly meet the interview?
Windows Server 2016 standard installing Oracle
Apache dolphin scheduler source code analysis (super detailed)
C language_ Double create, pre insert, post insert, traverse, delete
AttributeError: Can‘t get attribute ‘SPPF‘ on <module ‘models.common‘ from ‘/home/yolov5/models/comm
SQL Server Manager studio (SSMS) installation tutorial
随机推荐
[ 英語 ] 語法重塑 之 動詞分類 —— 英語兔學習筆記(2)
Bitcoinwin (BCW): the lending platform Celsius conceals losses of 35000 eth or insolvency
Day 248/300 thoughts on how graduates find jobs
Prefix and array series
Pallet management in SAP SD delivery process
18.多级页表与快表
Py06 dictionary mapping dictionary nested key does not exist test key sorting
Briefly describe the differences between indexes, primary keys, unique indexes, and joint indexes in mysql, and how they affect the performance of the database (in terms of reading and writing)
How to find a medical software testing institution? First flight software evaluation is an expert
Erreur de type résolue avec succès: type de données « catégorie» non sous - jacente
Facebook AI & Oxford proposed a video transformer with "track attention" to perform SOTA in video action recognition tasks
简单描述 MySQL 中,索引,主键,唯一索引,联合索引 的区别,对数据库的性能有什么影响(从读写两方面)
Attributeerror successfully resolved: can only use cat accessor with a ‘category‘ dtype
[advanced software testing step 1] basic knowledge of automated testing
At the age of 26, I changed my career from finance to software testing. After four years of precipitation, I have been a 25K Test Development Engineer
Arduino tutorial - Simon games
Delete external table source data
万丈高楼平地起,每个API皆根基
After working for 10 years, I changed to a programmer. Now I'm 35 + years old and I'm not anxious
LeetCode每日一题(1997. First Day Where You Have Been in All the Rooms)