// -- FILE ------------------------------------------------------------------ // name : RtfXmlConvertSettings.cs // project : RTF Framelet // created : Jani Giannoudis - 2008.06.10 // language : c# // environment: .NET 2.0 // copyright : (c) 2004-2013 by Jani Giannoudis, Switzerland // -------------------------------------------------------------------------- namespace Itenso.Rtf.Converter.Xml { // ------------------------------------------------------------------------ public class RtfXmlConvertSettings { // ---------------------------------------------------------------------- public RtfXmlConvertSettings() : this( null, null ) { } // RtfXmlConvertSettings // ---------------------------------------------------------------------- public RtfXmlConvertSettings( string ns ) : this( null, ns ) { } // RtfXmlConvertSettings // ---------------------------------------------------------------------- public RtfXmlConvertSettings( string prefix, string ns ) { Prefix = prefix; Ns = ns; } // RtfXmlConvertSettings // ---------------------------------------------------------------------- public string Prefix { get; set; } // ---------------------------------------------------------------------- public string Ns { get; set; } // ---------------------------------------------------------------------- public bool IsShowHiddenText { get; set; } } // class RtfXmlConvertSettings } // namespace Itenso.Rtf.Converter.Xml // -- EOF -------------------------------------------------------------------
By viewing downloads associated with this article you agree to the Terms of Service 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)