Show / Hide Table of Contents

Class DeleteParagraphBulletsRequest

Deletes bullets from all of the paragraphs that overlap with the given text index range. The nesting level of each paragraph will be visually preserved by adding indent to the start of the corresponding paragraph.

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

Properties

CellLocation

The optional table cell location if the text to be modified is in a table cell. If present, the object_id must refer to a table.

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

ObjectId

The object ID of the shape or table containing the text to delete bullets from.

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

TextRange

The range of text to delete bullets from, based on TextElement indexes.

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