Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

Section.HasFooter(HeaderFooterType) Method

Gets whether a section has a footer of the specified type.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

bool HasFooter(
    HeaderFooterType type
)

Parameters

Name Type Description
type HeaderFooterType

A HeaderFooterType enumeration value specifying the footer type.

Returns

Type Description
Boolean

true if the section has a footer of the specified type; otherwise, false.

Remarks

When a new footer is created using the Section.BeginUpdateFooter method without arguments, it is the footer of the HeaderFooterType.Primary type which is the same for all pages, unless the Section.DifferentFirstPage or the Document.DifferentOddAndEvenPages properties are set to true. So in this situation, you can use the HasFooter method to check for the HeaderFooterType.Primary footer type.

The following code snippets (auto-collected from DevExpress Examples) contain references to the HasFooter(HeaderFooterType) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also