Click or drag to resize

BannerTest_GetSections Method

Test case about method Get(BannerPages) because method is internal declaration

Namespace:  SOWIDocument.Word
Assembly:  SOWIDocument.Word (in SOWIDocument.Word.dll) Version: 22.2.10.1 (22.2.10.450)
Syntax
public bool Test_GetSections()

Return Value

Type: Boolean
True 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