BannerTest_GetSections Method |  |
Namespace:
SOWIDocument.Word
Assembly:
SOWIDocument.Word (in SOWIDocument.Word.dll) Version: 22.2.10.1 (22.2.10.450)
Syntaxpublic bool Test_GetSections()
Public Function Test_GetSections As Boolean
Return Value
Type:
BooleanTrue gives back as a list of section. False gives a null object back.
Remarks
Read first page footer as a list of section.
Examples
This example get banner selections and iteration this
List<SOWIDocument.Word.Section> lSections = GetSections(Pages.First);
if (lSections != null)
{
foreach (Section lSection in lSections)
{
}
}
See Also