Return to package dfl. www.dprogramming.com

module dfl.textbox

classes
TextBox TextBoxBase

TextBox
public class TextBox: TextBoxBase
{
public final void acceptsReturn(bool byes);    [property setter] public final bool acceptsReturn();    [property getter] public final void characterCasing(CharacterCasing cc);    [property setter] public final CharacterCasing characterCasing();    [property getter] protected override void onHandleCreated(EventArgs ea); public final void passwordChar(dchar pwc);    [property setter] public final dchar passwordChar();    [property getter] public final ScrollBars scrollBars();    [property getter] public final void scrollBars(ScrollBars sb);    [property setter] public final HorizontalAlignment textAlign();    [property getter] public final void textAlign(HorizontalAlignment ha);    [property setter] public this();
}

TextBoxBase
public abstract class TextBoxBase: ControlSuperClass
{
public final void acceptsTab(bool byes);    [property setter] public final bool acceptsTab();    [property getter] public final void appendText(char[] txt); public BorderStyle borderStyle();    [property getter] public void borderStyle(BorderStyle bs);    [property setter] public final bool canUndo();    [property getter] public final void clear(); public final void clearUndo(); public final void copy(); public override void createHandle(); protected override void createParams(inout CreateParams cp); public final void cut(); protected static Color defaultBackColor();    [property getter] protected static Color defaultForeColor();    [property getter] protected override Size defaultSize();    [property getter] public final bool hideSelection();    [property getter] public final void hideSelection(bool byes);    [property setter] public final char[][] lines();    [property getter] public final void lines(char[][] lns);    [property setter] public void maxLength(uint len);    [property setter] public uint maxLength();    [property getter] public final void modified(bool byes);    [property setter] public final bool modified();    [property getter] public bool multiline();    [property getter] public void multiline(bool byes);    [property setter] protected override void onHandleCreated(EventArgs ea); public final void paste(); protected override void prevWndProc(inout Message msg); public final void readOnly(bool byes);    [property setter] public final bool readOnly();    [property getter] public final void scrollToCaret(); public final void select(uint start, uint length); public final void selectAll(); public char[] selectedText();    [property getter] public void selectedText(char[] sel);    [property setter] public void selectionLength(uint len);    [property setter] public uint selectionLength();    [property getter] public uint selectionStart();    [property getter] public void selectionStart(uint pos);    [property setter] public uint textLength();    [property getter] public this(); public override char[] toString(); public final void undo(); protected override void wndProc(inout Message msg); public final bool wordWrap();    [property getter] public final void wordWrap(bool byes);    [property setter]
}