Dropbox .NET SDK
Show / Hide Table of Contents

Class ImportFormat

The import format of the incoming data.

Inheritance
object
ImportFormat
ImportFormat.Html
ImportFormat.Markdown
ImportFormat.Other
ImportFormat.PlainText
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 ImportFormat

Constructors

View Source

ImportFormat()

Initializes a new instance of the ImportFormat class.

Declaration
public ImportFormat()

Properties

View Source

AsHtml

Gets this instance as a Html, or null.

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

AsMarkdown

Gets this instance as a Markdown, or null.

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

AsOther

Gets this instance as a Other, or null.

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

AsPlainText

Gets this instance as a PlainText, or null.

Declaration
public ImportFormat.PlainText AsPlainText { get; }
Property Value
Type Description
ImportFormat.PlainText
View Source

IsHtml

Gets a value indicating whether this instance is Html

Declaration
public bool IsHtml { 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

IsPlainText

Gets a value indicating whether this instance is PlainText

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