Dropbox .NET SDK
Show / Hide Table of Contents

Class PaperDocExport

The paper doc export object

Inheritance
object
RefPaperDoc
PaperDocExport
Inherited Members
RefPaperDoc.DocId
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 PaperDocExport : RefPaperDoc

Constructors

View Source

PaperDocExport(string, ExportFormat, bool)

Initializes a new instance of the PaperDocExport class.

Declaration
public PaperDocExport(string docId, ExportFormat exportFormat, bool includeComments = false)
Parameters
Type Name Description
string docId

The Paper doc ID.

ExportFormat exportFormat

The export format

bool includeComments

When true, export includes comment threads (e.g. markdown footnotes). When false or omitted, body only. Other formats may adopt this later; currently only markdown uses it. Plain bool (not optional): protoc-gen-godbx does not support proto3 optional yet.

Properties

View Source

ExportFormat

Gets the export format of the paper doc export

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

IncludeComments

When true, export includes comment threads (e.g. markdown footnotes). When false or omitted, body only. Other formats may adopt this later; currently only markdown uses it. Plain bool (not optional): protoc-gen-godbx does not support proto3 optional yet.

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