HighlightText()

Presentation::HighlightText(System::String, System::Drawing::Color) method

Highlights all matches of the sample text with the specified color.

void Aspose::Slides::Presentation::HighlightText(System::String text, System::Drawing::Color highlightColor) override

Arguments

ParameterTypeDescription
textSystem::StringThe text to highlight.
highlightColorSystem::Drawing::ColorThe color to highlight the text.

Remarks

The following code sample shows how to highlight text in a PowerPoint presentation.

auto presentation = System::MakeObject<Presentation>(u"SomePresentation.pptx");

// highlighting all separate 'the' occurrences
presentation->HighlightText(u"the", System::Drawing::Color::get_Violet());
presentation->Save(u"SomePresentation-out2.pptx", SaveFormat::Pptx);

Presentation::HighlightText(System::String, System::Drawing::Color, System::SharedPtr<ITextSearchOptions>, System::SharedPtr<IFindResultCallback>) method

Highlights all matches of the sample text with the specified color.

void Aspose::Slides::Presentation::HighlightText(System::String text, System::Drawing::Color highlightColor, System::SharedPtr<ITextSearchOptions> options, System::SharedPtr<IFindResultCallback> callback) override

Arguments

ParameterTypeDescription
textSystem::StringThe text to highlight.
highlightColorSystem::Drawing::ColorThe color to highlight the text.
optionsSystem::SharedPtr<ITextSearchOptions>Text search options ITextSearchOptions.
callbackSystem::SharedPtr<IFindResultCallback>The callback object for receiving search results IFindResultCallback.

Remarks

The following code sample shows how to highlight text in a PowerPoint presentation.

auto presentation = System::MakeObject<Presentation>(u"SomePresentation.pptx");

auto textSearchOptions = System::MakeObject<TextSearchOptions>();
textSearchOptions->set_WholeWordsOnly(true);

// highlighting all separate 'the' occurrences
presentation->HighlightText(u"the", System::Drawing::Color::get_Violet(), textSearchOptions, nullptr);
presentation->Save(u"SomePresentation-out2.pptx", SaveFormat::Pptx);

See Also