Dropbox .NET SDK
Show / Hide Table of Contents

Class Dimensions

Dimensions for a photo or video.

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: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class Dimensions

Constructors

View Source

Dimensions(ulong, ulong)

Initializes a new instance of the Dimensions class.

Declaration
public Dimensions(ulong height, ulong width)
Parameters
Type Name Description
ulong height

Height of the photo/video.

ulong width

Width of the photo/video.

Properties

View Source

Height

Height of the photo/video.

Declaration
public ulong Height { get; protected set; }
Property Value
Type Description
ulong
View Source

Width

Width of the photo/video.

Declaration
public ulong Width { get; protected set; }
Property Value
Type Description
ulong
  • View Source
In this article
Back to top Dropbox .NET SDK