Show / Hide Table of Contents

Class SubstringMatchCriteria

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

Inheritance
System.Object
SubstringMatchCriteria
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Slides.v1.Data
Assembly: Google.Apis.Slides.v1.dll
Syntax
public class SubstringMatchCriteria : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

MatchCase

Indicates whether the search should respect case: - True: the search is case sensitive. - False: the search is case insensitive.

Declaration
[JsonProperty("matchCase")]
public virtual bool? MatchCase { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Text

The text to search for in the shape or table.

Declaration
[JsonProperty("text")]
public virtual string Text { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top