renamed SubSection to SectionGroup

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3852 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-01-10 12:43:52 +00:00
parent fe03bb3d47
commit f2cba8c2cb
15 changed files with 66 additions and 57 deletions

View file

@ -62,20 +62,19 @@ This command specifies which install types (see \R{ainsttype}{InstType}) the cur
\c SectionIn 1
\c SectionEnd
\S2{ssubsection} SubSection
\S2{ssectiongroup} SectionGroup
\c [/e] Caption [subsection_name index output]
\c [/e] Caption [section_group_name index output]
This command inserts a subsection. The subsection must be closed with SubSectionEnd, and should contain 1 or more Sections. If the subsection name begins with a !, the subsection will be displayed as bold. If /e is present, the sub sections of the sub section will be expanded by default. If section index output is specified, the parameter will be !defined with the section index (that can be used for SectionSetText etc). If the name is prefixed with 'un.' the subsection is an uninstaller subsection.
This command inserts a section group. The section group must be closed with \R{ssectiongroupend}{SectionGroupEnd}, and should contain 1 or more sections. If the section group name begins with a !, its name will be displayed with a bold font. If /e is present, the section group will be expanded by default. If section index output is specified, the parameter will be !defined with the section index (that can be used for \R{sectionsettext}{SectionSetText} etc). If the name is prefixed with 'un.' the section group is an uninstaller section group.
\c SubSection "some stuff"
\c SectionGroup "some stuff"
\c Section "a section"
\c SectionEnd
\c Section "another section"
\c SectionEnd
\c SubSectionEnd
\c SectionGroupEnd
\S2{ssubsectionend} SubSectionEnd
Closes a subsection opened with SubSection.
\S2{ssectiongroupend} SectionGroupEnd
Closes a section group opened with \R{ssectiongroup}{SectionGroup}.