EAGLE Help

dlgTextView


Function
Defines a multiline text viewer field.

Syntax
dlgTextView(string Text)
dlgTextView(string Text, string &Link) statement

Description
The dlgTextView statement defines a multiline text viewer field with the given Text.

The Text may contain Rich Text tags.

If Link is given and the Text contains hyperlinks, statement will be executed every time the user clicks on a hyperlink, with the value of Link set to whatever the <a href=...> tag defines as the value of href.

See also dlgTextEdit, dlgLabel, Layout Information, A Complete Example

Example

string Text = "This is some text.\nLine 2\nLine 3";
dlgVBoxLayout {
  dlgLabel("&View the text");
  dlgTextView(Text);
  }

Index Copyright © 2005 CadSoft Computer GmbH