BasePart is a parent of all Web parts in MonoX framework. It actually wraps and inherits from UserControl (not WebPart), allowing easy design of the custom MonoX modules without in-depth knowledge of custom control programming.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public class BasePart : UserControlBase, IWebPart, 
	IWebEditable, IWebActionable
Visual Basic
Public Class BasePart
	Inherits UserControlBase
	Implements IWebPart, IWebEditable, IWebActionable
Visual C++
public ref class BasePart : public UserControlBase, 
	IWebPart, IWebEditable, IWebActionable
F#
type BasePart =  
    class
        inherit UserControlBase
        interface IWebPart
        interface IWebEditable
        interface IWebActionable
    end

Inheritance Hierarchy

See Also