Show / Hide Table of Contents

Class Dimensions

The width and height of a page.

Inheritance
object
Dimensions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
public class Dimensions

Properties

Height

Declaration
[Required(ErrorMessage = "Height is required.")]
[JsonProperty(PropertyName = "height")]
public double Height { get; set; }
Property Value
Type Description
double

The height of a page.

Remarks

Required

Unit

Declaration
[Required(ErrorMessage = "Unit is required.")]
[JsonProperty(PropertyName = "unit")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Dimensions.UnitEnum? Unit { get; set; }
Property Value
Type Description
Dimensions.UnitEnum?

The unit of length.

Remarks

Required

Width

Declaration
[Required(ErrorMessage = "Width is required.")]
[JsonProperty(PropertyName = "width")]
public double Width { get; set; }
Property Value
Type Description
double

the width of a page.

Remarks

Required

In this article
Back to top