Difference between revisions of "Reference: MSEgui/TLabel"

From Free Pascal wiki
Jump to navigationJump to search
Line 50: Line 50:
  
 
====Caption====
 
====Caption====
 +
 +
The Caption is the text the label displays.
 +
 +
<syntaxhighlight>
 +
{$ifdef mse_unicodestring}
 +
  msestring = unicodestring;
 +
{$else}
 +
  msestring = widestring;
 +
{$endif}
 +
 +
property caption: msestring;
 +
</syntaxhighlight>
  
 
====Options====
 
====Options====

Revision as of 09:01, 21 January 2016

TLabel

work in progres

TLabel shows some Text on the form.

msegui TLabel.png


Reference

Hierarchy

  • TObject
  • TPersistent
  • TComponent
  • TMseComponent
  • TActComponent
  • TWidget
  • TActionWidget
  • TActionPublishedWidgetNwr
  • TPublishedWidgetNwr
  • TPublishedWidget
  • TCustomLabel
  • TLabel

Properties

inherited from TWidget

Anchors

Bounds

Color

Cursor

Enabled

Face

Font

Frame

Hint

Visible

Caption

The Caption is the text the label displays.

{$ifdef mse_unicodestring}
  msestring = unicodestring;
{$else}
  msestring = widestring;
{$endif}

property caption: msestring;

Options

With the option lao_nogray you can prevent a label to be shown grayed if itself or a parent widget is disabled.

labeloptionty = (lao_nogray,lao_nounderline);
labeloptionsty = set of labeloptionty;

property Options: labeloptionsty default [];

Methods

Events

inherited from TWidget

OnHint

OnEnter, OnFocus, OnActivate

OnPopup

known issues

issues of the class

issues of this documentation

Feel free to add your points here.