Class: Google::Apis::SlidesV1::SubstringMatchCriteria
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SlidesV1::SubstringMatchCriteria
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/slides_v1/classes.rb,
generated/google/apis/slides_v1/representations.rb,
generated/google/apis/slides_v1/representations.rb 
Overview
A criteria that matches a specific string of text in a shape or table.
Instance Attribute Summary collapse
- 
  
    
      #match_case  ⇒ Boolean 
    
    
      (also: #match_case?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the search should respect case: -
True: the search is case sensitive. - 
  
    
      #text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The text to search for in the shape or table.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SubstringMatchCriteria 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SubstringMatchCriteria.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SubstringMatchCriteria
Returns a new instance of SubstringMatchCriteria
      3645 3646 3647  | 
    
      # File 'generated/google/apis/slides_v1/classes.rb', line 3645 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#match_case ⇒ Boolean Also known as: match_case?
Indicates whether the search should respect case:
True: the search is case sensitive.False: the search is case insensitive. Corresponds to the JSON propertymatchCase
      3637 3638 3639  | 
    
      # File 'generated/google/apis/slides_v1/classes.rb', line 3637 def match_case @match_case end  | 
  
#text ⇒ String
The text to search for in the shape or table.
Corresponds to the JSON property text
      3643 3644 3645  | 
    
      # File 'generated/google/apis/slides_v1/classes.rb', line 3643 def text @text end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3650 3651 3652 3653  | 
    
      # File 'generated/google/apis/slides_v1/classes.rb', line 3650 def update!(**args) @match_case = args[:match_case] if args.key?(:match_case) @text = args[:text] if args.key?(:text) end  |