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

LayoutFootnote.Accept(LayoutVisitor) Method

Dispatches to the Visit method that is specific to the current LayoutType.

Namespace: DevExpress.XtraRichEdit.API.Layout

Assembly: DevExpress.RichEdit.v20.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

Declaration

public override void Accept(
    LayoutVisitor visitor
)

Parameters

Name Type Description
visitor LayoutVisitor

The visitor class instance defined in the Visitor pattern.

Remarks

The Accept method calls a specific Visit method of the visitor; the LayoutFooter passes itself as an argument to the Visit method being called.

The Accept method dispatches the call to the VisitFooter method of the visitor instance. The visitor instance is the parameter passed to the Accept method.

The VisitFooter method is a virtual protected method of the LayoutVisitor class. Implement it by overriding the VisitFooter method in the LayoutVisitor descendant (the visitor). It will process the LayoutFooter layout elements.

To know more, see the LayoutVisitor reference topic.

See Also