32 |
ImageSize property on 32 (specifies the size of the control' icons)
|
31 |
ImageSize property on 16 (default) (specifies the size of the control' icons)
|
30 |
How can I display the caption in mirror
With AxLabel1 .Alignment = EXLABELLib.AlignmentEnum.CenterAlignment .VAlignment = EXLABELLib.VAlignmentEnum.MiddleAlignment .Caption = "<b>mirror horizontal</b> text" .BackColor = RGB(255,255,255) .Rotate = EXLABELLib.HTMLRotateEnum.exHTMLMirror End With |
29 |
How can I display vertically the caption
With AxLabel1 .Alignment = EXLABELLib.AlignmentEnum.CenterAlignment .VAlignment = EXLABELLib.VAlignmentEnum.MiddleAlignment .Caption = "<b>vertical</b> text" .BackColor = RGB(255,255,255) .Rotate = EXLABELLib.HTMLRotateEnum.exHTMLVertical End With |
28 |
Does your control support text decorations
With AxLabel1 .WordWrap = True .Caption = "<font ;32><sha ;;0><out><gra FFFFFF>gradient-bottom</gra><br><fgcolor=FFFFFF><gra 000000>gradient-top</gra></fgcolor><br><fgcol" & _ "or=000000><gra F0F0F0;1;1>center-gradient</gra></fgcolor><br><sha><out><gra FFFFFF>gradient-bottom</gra><br><fgcolor=FFFFFF><gra" & _ " 000000>gradient-top</gra></fgcolor><br><fgcolor=000000><gra F0F0F0;1;1>center-gradient</gra></fgcolor><br>" End With |
27 |
Does you control support padding
With AxLabel1 .Appearance = EXLABELLib.AppearanceEnum.Flat .VAlignment = EXLABELLib.VAlignmentEnum.TopAlignment .Caption = "<fgcolor FFFFFF><bgcolor 000000>left/right and top/bottom padding</bgcolor></fgcolor>" .BorderWidth = 4 .BorderHeight = 4 .BackColor = RGB(255,255,255) End With |
26 |
How can I display multiple-lines label
With AxLabel1 .WordWrap = True .Caption = "<b>1.</b> This is the first line<br><b>2.</b> This is the second line." End With |
25 |
How can I disable the control
With AxLabel1 .Enabled = False .Alignment = EXLABELLib.AlignmentEnum.CenterAlignment .Caption = "Command" End With |
24 |
How can I display a percent bar over the control
' Click event - Occurs when the user presses and then releases the left mouse button over the control. Private Sub AxLabel1_ClickEvent(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AxLabel1.ClickEvent With AxLabel1 .set_BackgroundExtValue(EXLABELLib.IndexExtEnum.exIndexExt5,EXLABELLib.BackgroundExtPropertyEnum.exClientExt,"25%") .set_BackgroundExtValue(EXLABELLib.IndexExtEnum.exIndexExt5,EXLABELLib.BackgroundExtPropertyEnum.exTextExt,.get_BackgroundExtValue(EXLABELLib.IndexExtEnum.exIndexExt5,EXLABELLib.BackgroundExtPropertyEnum.exClientExt)) End With End Sub With AxLabel1 .Alignment = EXLABELLib.AlignmentEnum.CenterAlignment .Caption = "Command" .VAlignment = EXLABELLib.VAlignmentEnum.TopAlignment .BackgroundExt = "bottom[4],left[4],right[4],bottom[16,pattern=0x000,frame=RGB(0,0,0)](left[50%,back=RGB(0,255,0),text=`<font ;6><sha ;;0>50%`,al" & _ "ign=0x11,pattern=0x006,patterncolor=RGB(0,128,0),frame=RGB(0,128,0)])" .set_BackgroundExtValue(EXLABELLib.IndexExtEnum.exIndexExt5,EXLABELLib.BackgroundExtPropertyEnum.exClientExt,"75%") .set_BackgroundExtValue(EXLABELLib.IndexExtEnum.exIndexExt5,EXLABELLib.BackgroundExtPropertyEnum.exTextExt,.get_BackgroundExtValue(EXLABELLib.IndexExtEnum.exIndexExt5,EXLABELLib.BackgroundExtPropertyEnum.exClientExt)) End With |
23 |
Is it possible to display an additional caption on the control's background
|
22 |
How can I display a pattern over the label
|
21 |
How can I display pictures
With AxLabel1 .Alignment = EXLABELLib.AlignmentEnum.CenterAlignment .set_HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif") .set_HTMLPicture("pic2","c:\exontrol\images\auction.gif") .Caption = "text and pictures <img>pic1</img>,<img>pic2</img>,..." End With |
20 |
How can I display icons
|
19 |
How can I specify a different foreground color for a portion of the caption only
With AxLabel1 .BackColor = RGB(255,255,255) .Caption = "text <fgcolor FF0000>foreground</fgcolor> text" End With |
18 |
How can I specify a different background color for a portion of the caption only
With AxLabel1 .BackColor = RGB(255,255,255) .Caption = "text <bgcolor FF0000>background</bgcolor> text" End With |
17 |
Does your control support subscript or superscript, in HTML captions
|
16 |
How can I center the text and underlined with a dot line
|
15 |
Is there anyway to get the dotline or solidline to extend across the entire width of the caption area when text is centre-aligned horizontally
With AxLabel1 .WordWrap = True .Caption = "<c>Name&Address<br><upline><dotline> <c><font Tahoma;8>DeliveryNotes</font>" .Alignment = EXLABELLib.AlignmentEnum.LeftAlignment .BackColor = RGB(0,0,0) .ForeColor = RGB(255,255,255) End With |
14 |
How can I show a thick frame around the label
|
13 |
How can I add text decorations ( shadow )
With AxLabel1 .BackColor = RGB(255,255,255) .WordWrap = True .BorderWidth = 2 .BorderHeight = 2 .Caption = "<font ;28><sha>shadow</sha><br><fgcolor=FFFFFF><sha 0>outline</sha><br><sha 0;;0>outline anti-aliasing</sha><br><sha 808080;8;0" & _ ">outline anti-aliasing</sha><br><sha 0;2;0>outline anti-aliasing</sha></font>" End With |
12 |
How can I add text decorations ( outline )
With AxLabel1 .BackColor = RGB(255,255,255) .WordWrap = True .BorderWidth = 2 .BorderHeight = 2 .Caption = "<font ;28><out>outline</out><br><fgcolor=FFFFFF><out 0>outline</out><br><sha 0;;0>outline anti-aliasing</sha><br><sha 0;2;0>out" & _ "line anti-aliasing</sha></font>" End With |
11 |
How can I add text decorations ( gradient )
With AxLabel1 .WordWrap = True .Caption = "<font ;14><gra FFFFFF>gradient-bottom</gra><br><fgcolor=FFFFFF><gra 000000>gradient-top</gra></fgcolor><br><fgcolor=000000><gra" & _ " F0F0F0;1;1>center-gradient</gra></fgcolor><br>" End With |
10 |
Is it possible to display the control's tooltip using colord EBN objects
With AxLabel1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .Caption = "just hover the cursor over the control" .Alignment = EXLABELLib.AlignmentEnum.CenterAlignment .set_Background(EXLABELLib.BackgroundPartEnum.exToolTipAppearance,33488896) .ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" End With |
9 |
Is it possible to display the control's tooltip using EBN objects
With AxLabel1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .Caption = "just hover the cursor over the control" .Alignment = EXLABELLib.AlignmentEnum.CenterAlignment .set_Background(EXLABELLib.BackgroundPartEnum.exToolTipAppearance,16777216) .ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" End With |
8 |
How do I change the control's tooltip
|
7 |
Is it possible to display a colored EBN so the borders will be transparent
With AxLabel1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .Appearance = &H1a88a58 Or EXLABELLib.AppearanceEnum.Bump .Caption = "just the label's caption" .Alignment = EXLABELLib.AlignmentEnum.CenterAlignment End With |
6 |
Is it possible to display an EBN so the borders will be transparent
With AxLabel1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .Appearance = &H1000000 .Caption = "just the label's caption" .Alignment = EXLABELLib.AlignmentEnum.CenterAlignment End With |
5 |
How do I put/resize/stretch a picture on the control's background
With AxLabel1 .Picture = AxLabel1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = EXLABELLib.PictureDisplayEnum.Stretch .BorderWidth = 64 .BorderHeight = 64 End With |
4 |
How can I change the control's font
Dim f With AxLabel1 f = CreateObject("StdFont") With f .Name = "Verdana" .Size = 12 End With .Font = f .Caption = "just the label's caption" .BorderWidth = 8 .BorderHeight = 8 End With |
3 |
How can I change the control's font
|
2 |
How do I change the control's foreground color
With AxLabel1 .ForeColor = RGB(255,0,0) .Caption = "just the label's caption" .BorderWidth = 8 .BorderHeight = 8 End With |
1 |
How do I change the control's background color
With AxLabel1 .BackColor = RGB(255,0,0) End With |