Skip to main content
All docs
V25.2
  • Presentation.FindText(String, TextSearchOptions) Method

    Searches the presentation (including all shapes, notes, and tables) for all occurrences of the specified text, using the provided search options.

    Namespace: DevExpress.Docs.Presentation

    Assembly: DevExpress.Docs.Presentation.v25.2.dll

    NuGet Package: DevExpress.Docs.Presentation

    Declaration

    public IList<TextSearchInfo> FindText(
        string text,
        TextSearchOptions options = null
    )

    Parameters

    Name Type Description
    text String

    Text to find.

    Optional Parameters

    Name Type Default Description
    options TextSearchOptions null

    Options for the text search.

    Returns

    Type Description
    IList<TextSearchInfo>

    Contains information about all relevant text ranges found in the presentation.

    Remarks

    For more information, refer to the following help topic: DevExpress Presentation API: Search, Replace, Remove, and Highlight Text in a Slide or Presentation.

    See Also