Show / Hide Table of Contents

Class UpdateTextStyleRequest

Update the styling of text in a Shape or Table.

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

Properties

CellLocation

The location of the cell in the table containing the text to style. If object_id refers to a table, cell_location must have a value. Otherwise, it must not.

Declaration
[JsonProperty("cellLocation")]
public virtual TableCellLocation CellLocation { get; set; }
Property Value
Type Description
TableCellLocation

ETag

The ETag of the item.

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

Fields

The fields that should be updated. At least one field must be specified. The root style is implied and should not be specified. A single "*" can be used as short-hand for listing every field. For example, to update the text style to bold, set fields to "bold". To reset a property to its default value, include its field name in the field mask but leave the field itself unset.

Declaration
[JsonProperty("fields")]
public virtual object Fields { get; set; }
Property Value
Type Description
System.Object

ObjectId

The object ID of the shape or table with the text to be styled.

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

Style

The style(s) to set on the text. If the value for a particular style matches that of the parent, that style will be set to inherit. Certain text style changes may cause other changes meant to mirror the behavior of the Slides editor. See the documentation of TextStyle for more information.

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

TextRange

The range of text to style. The range may be extended to include adjacent newlines. If the range fully contains a paragraph belonging to a list, the paragraph's bullet is also updated with the matching text style.

Declaration
[JsonProperty("textRange")]
public virtual Range TextRange { get; set; }
Property Value
Type Description
Range

Implements

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