Return to package dfl. www.dprogramming.com

module dfl.richtextbox

classes
LinkClickedEventArgs RichTextBox
enums
RichTextBoxScrollBars

LinkClickedEventArgs
public class LinkClickedEventArgs: EventArgs
{
public final char[] linkText();    [property getter] public this(char[] linkText);
}

RichTextBox
public class RichTextBox: TextBoxBase
{
public override void backColor(Color c);    [property setter] public final bool canPaste(DataFormats.Format df); public final bool canRedo();    [property getter] protected override void createParams(inout CreateParams cp); public override Cursor cursor();    [property getter] public override Size defaultSize();    [property getter] public final bool detectUrls();    [property getter] public final void detectUrls(bool byes);    [property setter] public override void foreColor(Color c);    [property setter] public override void maxLength(uint len);    [property setter] protected override void onHandleCreated(EventArgs ea); protected void onLinkClicked(LinkClickedEventArgs ea); protected override void onReflectedMessage(inout Message m); public final void paste(DataFormats.Format df); protected override void prevWndProc(inout Message m); public final void redo(); public final char[] rtf();    [property getter] public final void rtf(char[] newRtf);    [property setter] public final RichTextBoxScrollBars scrollBars();    [property getter] public final void scrollBars(RichTextBoxScrollBars sb);    [property setter] public final void selectedRtf(char[] rtf);    [property setter] public final char[] selectedRtf();    [property getter] public override char[] selectedText();    [property getter] public final void selectionBackColor(Color c);    [property setter] public final Color selectionBackColor();    [property getter] public final void selectionCharOffset(int yoffset);    [property setter] public final int selectionCharOffset();    [property getter] public final void selectionColor(Color c);    [property setter] public final Color selectionColor();    [property getter] public final void selectionFont(Font f);    [property setter] public final Font selectionFont();    [property getter] public override uint selectionLength();    [property getter] public override void selectionLength(uint len);    [property setter] public override void selectionStart(uint pos);    [property setter] public override uint selectionStart();    [property getter] public final void selectionSubscript(bool byes);    [property setter] public final bool selectionSubscript();    [property getter] public final bool selectionSuperscript();    [property getter] public final void selectionSuperscript(bool byes);    [property setter] public final void selectionUnderline(bool byes);    [property setter] public final bool selectionUnderline();    [property getter] public this(); public Event(RichTextBox,LinkClickedEventArgs) linkClicked;
}

RichTextBoxScrollBars
public enum RichTextBoxScrollBars: ubyte
{
	NONE,
	HORIZONTAL,
	VERTICAL,
	BOTH,
	FORCED_HORIZONTAL,
	FORCED_VERTICAL,
	FORCED_BOTH,
}