Dropbox .NET SDK
Show / Hide Table of Contents

Class ExportFormat

The desired export format of the Paper doc.

Inheritance
object
ExportFormat
ExportFormat.Html
ExportFormat.Json
ExportFormat.Markdown
ExportFormat.Other
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Paper
Assembly: Dropbox.Api.dll
Syntax
public class ExportFormat

Constructors

View Source

ExportFormat()

Initializes a new instance of the ExportFormat class.

Declaration
public ExportFormat()

Properties

View Source

AsHtml

Gets this instance as a Html, or null.

Declaration
public ExportFormat.Html AsHtml { get; }
Property Value
Type Description
ExportFormat.Html
View Source

AsJson

Gets this instance as a Json, or null.

Declaration
public ExportFormat.Json AsJson { get; }
Property Value
Type Description
ExportFormat.Json
View Source

AsMarkdown

Gets this instance as a Markdown, or null.

Declaration
public ExportFormat.Markdown AsMarkdown { get; }
Property Value
Type Description
ExportFormat.Markdown
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public ExportFormat.Other AsOther { get; }
Property Value
Type Description
ExportFormat.Other
View Source

IsHtml

Gets a value indicating whether this instance is Html

Declaration
public bool IsHtml { get; }
Property Value
Type Description
bool
View Source

IsJson

Gets a value indicating whether this instance is Json

Declaration
public bool IsJson { get; }
Property Value
Type Description
bool
View Source

IsMarkdown

Gets a value indicating whether this instance is Markdown

Declaration
public bool IsMarkdown { get; }
Property Value
Type Description
bool
View Source

IsOther

Gets a value indicating whether this instance is Other

Declaration
public bool IsOther { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK