Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

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.v19.1.Core.dll

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