// -- FILE ------------------------------------------------------------------ // name : IRtfDocumentInfo.cs // project : RTF Framelet // created : Leon Poyyayil - 2008.05.23 // language : c# // environment: .NET 2.0 // copyright : (c) 2004-2010 by Itenso GmbH, Switzerland // -------------------------------------------------------------------------- using System; namespace Itenso.Rtf { // ------------------------------------------------------------------------ public interface IRtfDocumentInfo { // ---------------------------------------------------------------------- int? Id { get; } // ---------------------------------------------------------------------- int? Version { get; } // ---------------------------------------------------------------------- int? Revision { get; } // ---------------------------------------------------------------------- string Title { get; } // ---------------------------------------------------------------------- string Subject { get; } // ---------------------------------------------------------------------- string Author { get; } // ---------------------------------------------------------------------- string Manager { get; } // ---------------------------------------------------------------------- string Company { get; } // ---------------------------------------------------------------------- string Operator { get; } // ---------------------------------------------------------------------- string Category { get; } // ---------------------------------------------------------------------- string Keywords { get; } // ---------------------------------------------------------------------- string Comment { get; } // ---------------------------------------------------------------------- string DocumentComment { get; } // ---------------------------------------------------------------------- string HyperLinkbase { get; } // ---------------------------------------------------------------------- DateTime? CreationTime { get; } // ---------------------------------------------------------------------- DateTime? RevisionTime { get; } // ---------------------------------------------------------------------- DateTime? PrintTime { get; } // ---------------------------------------------------------------------- DateTime? BackupTime { get; } // ---------------------------------------------------------------------- int? NumberOfPages { get; } // ---------------------------------------------------------------------- int? NumberOfWords { get; } // ---------------------------------------------------------------------- int? NumberOfCharacters { get; } // ---------------------------------------------------------------------- int? EditingTimeInMinutes { get; } } // interface IRtfDocumentInfo } // namespace Itenso.Rtf // -- EOF -------------------------------------------------------------------
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Math Primers for Programmers