Dropbox .NET SDK
Show / Hide Table of Contents

Class ApiOfficeMetadata

MS Office document metadata. Mirrors the internal `riviera.OfficeMetadata` message. Some fields apply only to specific document types (e.g. `slides` for PowerPoint, `words`/`pages` for Word).

Inheritance
object
ApiOfficeMetadata
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class ApiOfficeMetadata

Constructors

View Source

ApiOfficeMetadata(OfficeFileType, string, string, string, string, string, string, uint, uint, uint, uint, string)

Initializes a new instance of the ApiOfficeMetadata class.

Declaration
public ApiOfficeMetadata(OfficeFileType fileType = null, string creator = "", string company = "", string title = "", string subject = "", string keywords = "", string description = "", uint totalEditTimeMinutes = 0, uint pages = 0, uint words = 0, uint slides = 0, string revisionNumber = "")
Parameters
Type Name Description
OfficeFileType fileType

The file type

string creator

The creator

string company

The company

string title

The title

string subject

The subject

string keywords

The keywords

string description

The description

uint totalEditTimeMinutes

The total edit time minutes

uint pages

Word only.

uint words

The words

uint slides

PowerPoint only.

string revisionNumber

The revision number

Properties

View Source

Company

Gets the company of the api office metadata

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

Creator

Gets the creator of the api office metadata

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

Description

Gets the description of the api office metadata

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

FileType

Gets the file type of the api office metadata

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

Keywords

Gets the keywords of the api office metadata

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

Pages

Word only.

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

RevisionNumber

Gets the revision number of the api office metadata

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

Slides

PowerPoint only.

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

Subject

Gets the subject of the api office metadata

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

Title

Gets the title of the api office metadata

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

TotalEditTimeMinutes

Gets the total edit time minutes of the api office metadata

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

Words

Gets the words of the api office metadata

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