Click here to Skip to main content
15,897,273 members
Articles / Programming Languages / C#

NetMX - a JMX port to the .NET world

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
10 Mar 2008LGPL34 min read 39.6K   268   11  
An introduction to NetMX - a lightweight .NET management solution.
#region Using
using System;
using System.Collections;
using System.Collections.Generic;
using System.Web.UI;
using System.Web.UI.WebControls;

#endregion

namespace NetMX.WebUI.WebControls
{
   /// <summary>
   /// Interface representing a control which purpose is to edit a siple value like text or number.
   /// </summary>
   public interface IValueEditControl
   {
      /// <summary>
      /// Textual form of value being edited.
      /// </summary>
      string Value { get; set; }
      /// <summary>
      /// Gets or sets the CSS class of the control. Automaticaly implemented because <see cref="IValueEditControl"/>
      /// implementations should be <see cref="WebControl"/> derived.
      /// </summary>
      string CssClass { get; set; }
      /// <summary>
      /// Gets or sets the ID of the control. Automaticaly implemented because <see cref="IValueEditControl"/>
      /// implementations should be <see cref="WebControl"/> derived.
      /// </summary>
      string ID { get; set; }
      /// <summary>
      /// Gets or sets if the control should use ViewState. Automaticaly implemented because <see cref="IValueEditControl"/>
      /// implementations should be <see cref="WebControl"/> derived.
      /// </summary>
      bool EnableViewState { get; set; }
      /// <summary>
      /// Gets or sets the visibility of the control. Automaticaly implemented because <see cref="IValueEditControl"/>
      /// implementations should be <see cref="WebControl"/> derived.
      /// </summary>
      bool Visible { get; set; }
   }
}

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
Software Developer (Senior) VSoft
Poland Poland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions