Click here to Skip to main content
15,895,256 members
Articles / Programming Languages / C#

NRTFTree - A class library for RTF processing in C#

Rate me:
Please Sign up or sign in to vote.
4.50/5 (42 votes)
7 Sep 2007LGPL33 min read 479.6K   22.4K   161  
Class library to manage RTF files.
/*****************************************************************************
* Clase:		TOKEN_TYPE
* Autor:		Sgoliver
* Fecha:		13/03/2005
* Descripci�n:	Tipos de token de un �rbol de documento RTF
* ***************************************************************************/

using System;

namespace Net.Sgoliver.NRtfTree
{
	/// <summary>
	/// Tipos de token de un �rbol de documento RTF.
	/// </summary>
	public enum TOKEN_TYPE
	{
		/// <summary>
		/// Indica que el token s�lo se ha inicializado.
		/// </summary>
		NONE		= 0,
		/// <summary>
		/// Palabra clave sin par�metro.
		/// </summary>
		KEYWORD		= 1,
		/// <summary>
		/// S�mbolo de control sin par�metro.
		/// </summary>
		CONTROL		= 2,
		/// <summary>
		/// Texto del documento.
		/// </summary>
		TEXT		= 3,
		/// <summary>
		/// Marca de fin de fichero.
		/// </summary>
		EOF			= 4,
		/// <summary>
		///	Inicio de grupo: '{'
		/// </summary>
		GROUP_START = 5,
		/// <summary>
		/// Fin de grupo: '}'
		/// </summary>
		GROUP_END	= 6	
	}
}

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.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Web Developer
Spain Spain
Currently, i work for a great consulting company as a software developer.

My homepage is:
http://www.sgoliver.net

Comments and Discussions