Click here to Skip to main content
15,888,202 members
Articles / Programming Languages / C#

WebBrowserControl for the .NET Framework 1.1

Rate me:
Please Sign up or sign in to vote.
3.06/5 (11 votes)
15 Apr 2010CPOL2 min read 98.7K   1.6K   21  
An implementation of a web browser control for the .NET Framework 1.1.
using System;
using System.Runtime.InteropServices;

namespace Pajocomo.Windows.Forms
{
	/// <summary>
	/// designates the type of support provided by an object for the command specified in an <see cref="WebBrowserCommand"/>.
	/// </summary>
	[TypeLibType((short)0)]
	[Flags]
	public enum WebBrowserCommandStatus
	{
		/// <summary>
		/// The command is supported by this object.
		/// </summary>
		Supported = 1,

		/// <summary>
		/// The command is available and enabled.
		/// </summary>
		Enabled = 2,

		/// <summary>
		/// The command is an on-off toggle and is currently on.
		/// </summary>
		Latched = 4,

		/// <summary>
		/// Reserved for future use.
		/// </summary>
		Ninched = 8,

		/// <summary>
		/// 
		/// </summary>
		Invisible = 16,

		/// <summary>
		/// 
		/// </summary>
		DefineHideOnContextMenu = 32
	}
}

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 Code Project Open License (CPOL)


Written By
Software Developer (Senior) Paulo Morgado
Portugal Portugal

Comments and Discussions