class Google::Apis::SlidesV1::SubstringMatchCriteria

A criteria that matches a specific string of text in a shape or table.

Attributes

match_case[RW]

Indicates whether the search should respect case: - `True`: the search is case sensitive. - `False`: the search is case insensitive. Corresponds to the JSON property `matchCase` @return [Boolean]

match_case?[RW]

Indicates whether the search should respect case: - `True`: the search is case sensitive. - `False`: the search is case insensitive. Corresponds to the JSON property `matchCase` @return [Boolean]

text[RW]

The text to search for in the shape or table. Corresponds to the JSON property `text` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 3667
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/slides_v1/classes.rb, line 3672
def update!(**args)
  @match_case = args[:match_case] if args.key?(:match_case)
  @text = args[:text] if args.key?(:text)
end