Class UpdateTextStyleRequest
Update the styling of text.
Implements
Inherited Members
Namespace: Google.Apis.Docs.v1.Data
Assembly: Google.Apis.Docs.v1.dll
Syntax
public class UpdateTextStyleRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Fields
The fields that should be updated. At least one field must be specified. The root text_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 |
---|---|
object |
Range
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. Ranges cannot be inserted inside a relative UpdateTextStyleRequest.
Declaration
[JsonProperty("range")]
public virtual Range Range { get; set; }
Property Value
Type | Description |
---|---|
Range |
TextStyle
The styles 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 in order to to mirror the behavior of the Docs editor. See the documentation of TextStyle for more information.
Declaration
[JsonProperty("textStyle")]
public virtual TextStyle TextStyle { get; set; }
Property Value
Type | Description |
---|---|
TextStyle |