NoteContinuationSeparatorBox.Accept(LayoutVisitor) Method
Dispatches to the Visit method that is specific to the current LayoutType.
Namespace: DevExpress.XtraRichEdit.API.Layout
Assembly: DevExpress.RichEdit.v24.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
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 NoteContinuationSeparatorBox passes itself as an argument to the Visit method being called.
The Accept method dispatches the call to the NoteContinuationSeparatorBox method of the visitor instance. The visitor instance is the parameter passed to the Accept method.
The VisitNoteContinuationSeparatorBox method is a virtual protected method of the LayoutVisitor class. Implement it by overriding the VisitNoteContinuationSeparatorBox method in the LayoutVisitor descendant (the visitor). It will process the NoteContinuationSeparatorBox layout elements.
Refer to the LayoutVisitor reference topic for a code sample.