Difference between revisions of "TES5Edit Scripting Functions"
m
→Script User Interface: TStaticText
imported>DavidJCobb (I can't seem to find much documentation on Delphi, and not for lack of trying. Not a very good sign, that.) |
imported>DavidJCobb m (→Script User Interface: TStaticText) |
||
Line 342: | Line 342: | ||
|- align="left" style="background-color: #F8F8F8" | |- align="left" style="background-color: #F8F8F8" | ||
| scope="row" | <b>TPanel</b> || [http://lazarus-ccr.sourceforge.net/docs/lcl/extctrls/tpanel.html TPanel] || General-purpose container for UI widgets || ExportImportTexts.pas || | | scope="row" | <b>TPanel</b> || [http://lazarus-ccr.sourceforge.net/docs/lcl/extctrls/tpanel.html TPanel] || General-purpose container for UI widgets || ExportImportTexts.pas || | ||
|- align="left" style="background-color: # | |- align="left" style="background-color: #EEEEEE" | ||
| scope="row" | <b>TStaticText</b> || [http://docs.embarcadero.com/products/rad_studio/delphiAndcpp2009/HelpUpdate2/EN/html/delphivclwin32/StdCtrls_TStaticText.html TStaticText] || Apparently used to display ordinary text. || none || Set the [http://docs.embarcadero.com/products/rad_studio/delphiAndcpp2009/HelpUpdate2/EN/html/delphivclwin32/StdCtrls_TStaticText_Caption.html <code>Caption</code>] property to your text. To show line breaks, concatenate <code>#13#10</code> into your string (e.g. <code>'Line 1' + #13#10 + 'Line 2'</code>). | |||
|} | |} | ||
Line 356: | Line 357: | ||
|- align="left" style="background-color: #F8F8F8" | |- align="left" style="background-color: #F8F8F8" | ||
| scope="row" | <b>frmFileSelect</b> || TForm || Returns a copy of the plug-in select dialog, which can be shown by calling <code>fMyDialogVariable.ShowModal</code> || You can get a reference to the checkbox list (as a TCheckListBox) by calling <code>TCheckListBox(fMyDialogVariable.FindComponent('CheckListBox1'))</code> | | scope="row" | <b>frmFileSelect</b> || TForm || Returns a copy of the plug-in select dialog, which can be shown by calling <code>fMyDialogVariable.ShowModal</code> || You can get a reference to the checkbox list (as a TCheckListBox) by calling <code>TCheckListBox(fMyDialogVariable.FindComponent('CheckListBox1'))</code> | ||
|} | |} | ||