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

RichEditView.Visit(IRichEditViewVisitor) Method

A key method for the Visitor pattern that calls the appropriate Visit method of the Visitor.

Namespace: DevExpress.XtraRichEdit

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

NuGet Package: DevExpress.RichEdit.Core

Declaration

public abstract void Visit(
    IRichEditViewVisitor visitor
)

Parameters

Name Type Description
visitor IRichEditViewVisitor

An object exposing the IRichEditViewVisitor representing the Visitor of the Visitor pattern.

Remarks

A Visit method is implemented in each RichEditView descendant. It calls the corresponding Visit method of the object exposing a Visitor interface. This object is passed as the parameter.

This member supports the internal infrastructure and is not intended to be used directly from your code.

See Also