Show / Hide Table of Contents

Class TextRun

A TextElement kind that represents a run of text that all has the same styling.

Inheritance
System.Object
TextRun
Implements
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 TextRun : IDirectResponseSchema

Properties

Content

The text of this run.

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

ETag

The ETag of the item.

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

Style

The styling applied to this run.

Declaration
[JsonProperty("style")]
public virtual TextStyle Style { get; set; }
Property Value
Type Description
TextStyle

Implements

IDirectResponseSchema
Back to top