Skip to main content
Box

LayoutElementBase.Accept(LayoutVisitor) Method

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

Namespace: DevExpress.XtraRichEdit.API.Layout

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

NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation

Declaration

public abstract void Accept(
    LayoutVisitor visitor
)

Parameters

Name Type Description
visitor LayoutVisitor

A LayoutVisitor implementation that is the instance of the visitor class defined in the Visitor pattern.

Remarks

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

See Also