This control is created to represent literal text found inside a container control (like a Form or Panel). You can use a LiteralText control to programmatically add content to a form, although it is generally more common to use a Label control.
public class LiteralText : PagedControl { // Public Constructors public LiteralText( ); // Public Instance Properties public string PagedText{get; } public string Text{set; get; } // Protected Instance Properties protected override int InternalItemCount{get; } // overrides PagedControl protected override int ItemWeight{get; } // overrides PagedControl }