Show / Hide Table of Contents

Class ImageProperties

The properties of the Image.

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

Properties

Brightness

The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect. This property is read-only.

Declaration
[JsonProperty("brightness")]
public virtual float? Brightness { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Contrast

The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect. This property is read-only.

Declaration
[JsonProperty("contrast")]
public virtual float? Contrast { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

CropProperties

The crop properties of the image. If not set, the image is not cropped. This property is read-only.

Declaration
[JsonProperty("cropProperties")]
public virtual CropProperties CropProperties { get; set; }
Property Value
Type Description
CropProperties

ETag

The ETag of the item.

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

Link

The hyperlink destination of the image. If unset, there is no link.

Declaration
[JsonProperty("link")]
public virtual Link Link { get; set; }
Property Value
Type Description
Link

Outline

The outline of the image. If not set, the image has no outline.

Declaration
[JsonProperty("outline")]
public virtual Outline Outline { get; set; }
Property Value
Type Description
Outline

Recolor

The recolor effect of the image. If not set, the image is not recolored. This property is read-only.

Declaration
[JsonProperty("recolor")]
public virtual Recolor Recolor { get; set; }
Property Value
Type Description
Recolor

Shadow

The shadow of the image. If not set, the image has no shadow. This property is read-only.

Declaration
[JsonProperty("shadow")]
public virtual Shadow Shadow { get; set; }
Property Value
Type Description
Shadow

Transparency

The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means completely transparent. This property is read-only.

Declaration
[JsonProperty("transparency")]
public virtual float? Transparency { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Implements

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