93. Is it possible to print the control's Value on the thumb
// Change event - Occurs when the value of the control is changed.
private void exslider1_Change(object sender)
{
exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,exslider1.Value.ToString());
}
//this.exslider1.Change += new exontrol.EXSLIDERLib.exg2antt.ChangeEventHandler(this.exslider1_Change);
exslider1.TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exBoth;
exslider1.ThumbSize = 48;
exslider1.TickFrequency = 0;
exslider1.Value = 5;
92. How can I display the value on the thumb
// Change event - Occurs when the value of the control is changed.
private void exslider1_Change(object sender)
{
exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,exslider1.ValueF.ToString());
}
//this.exslider1.Change += new exontrol.EXSLIDERLib.exg2antt.ChangeEventHandler(this.exslider1_Change);
exslider1.BeginUpdate();
exslider1.AllowFloat = true;
exslider1.MinimumF = -3.25;
exslider1.MaximumF = 3.25;
exslider1.SmallChangeF = 0.25;
exslider1.ThumbSize = 48;
exslider1.ValueF = 0;
exslider1.TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exBoth;
exslider1.TickFrequencyF = 0;
exslider1.EndUpdate();
91. How can I display a different text than the slider's value
exslider1.LabelTick = "( value = current ? '<b><font ;10>' : '' ) + (value array 'ab bc cd de ef fg gh hi ij jk kl' sp" +
"lit ' ')";
90. How can I show values for selec range only
exslider1.SelectRange = true; exslider1.SelStart = 1; exslider1.SelLength = 2; exslider1.LabelTick = "value=current ? '<b><font ;10>' + value : ( value>=smin and value<=smax ? '<fgcolor=0000FF>' + " + "value : '' ) ";
89. Is it possible to display min max value
exslider1.LabelTick = "value = vmin ? '<b>min<br>'+value : (value = vmax ? '<b>max<br>'+value : ( value=current ? '<b>" +
"' + value : '<fgcolor=808080>' + value ) )";
88. How can I show the value for current value only
exslider1.LabelTick = "value = current ? value : ''";
87. Is it possible to show the value using the tooltip
// Change event - Occurs when the value of the control is changed.
private void exslider1_Change(object sender)
{
exslider1.ToolTipText = exslider1.Value.ToString();
}
//this.exslider1.Change += new exontrol.EXSLIDERLib.exg2antt.ChangeEventHandler(this.exslider1_Change);
86. Is it possible to show labels for ticks
exslider1.LabelTick = "value";
85. How can I change the tooltip's border using your EBN files with a different color
exslider1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exToolTipAppearance,0x100ffa0); exslider1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" + ""; exslider1.Value = 43;
84. Can I change the color for the control's border
exslider1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); exslider1.Appearance = (exontrol.EXSLIDERLib.AppearanceEnum)0x10000f8 | exontrol.EXSLIDERLib.AppearanceEnum.Flat | exontrol.EXSLIDERLib.AppearanceEnum.Sunken | exontrol.EXSLIDERLib.AppearanceEnum.Etched;
83. How can I display a character from a specified font ( for vertical alignment )
exslider1.ThumbSize = 96; exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>-1</img><font Webdings;10>a</font>"); exslider1.Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical;
82. How can I display a character from a specified font
exslider1.ThumbSize = 96;
exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<font Webdings;10>a</font>");
81. When I have a slider in vertical orientation, how can I get the caption horizontal
exslider1.ThumbSize = 96; exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>-1</img>thumb"); exslider1.Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical;
80. Does your control support floating points
// Change event - Occurs when the value of the control is changed.
private void exslider1_Change(object sender)
{
System.Diagnostics.Debug.Print( exslider1.ValueF.ToString() );
}
//this.exslider1.Change += new exontrol.EXSLIDERLib.exg2antt.ChangeEventHandler(this.exslider1_Change);
exslider1.BeginUpdate();
exslider1.AllowFloat = true;
exslider1.MinimumF = -3;
exslider1.MaximumF = 3;
exslider1.SmallChangeF = 0.5;
exslider1.LargeChangeF = 1;
exslider1.TickFrequencyF = exslider1.SmallChangeF;
exslider1.ValueF = 0;
exslider1.EndUpdate();
79. How do I change the control's border, using your EBN files
exslider1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); exslider1.Appearance = (exontrol.EXSLIDERLib.AppearanceEnum)0x1000000;
78. How can I change the color of the selected range in the control
exslider1.Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical; exslider1.SelectRange = true; exslider1.SelStart = 2; exslider1.SelLength = 2; exslider1.Value = 1; exslider1.set_Background(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSSel,Color.FromArgb(0,0,0));
77. How can I change the color of the selection in the control
exslider1.SelectRange = true; exslider1.SelStart = 2; exslider1.SelLength = 2; exslider1.Value = 1; exslider1.set_Background(exontrol.EXSLIDERLib.BackgroundPartEnum.exHSSel,Color.FromArgb(0,0,0));
76. How can I change the visual appearance of the selected range in the control
exslider1.Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical; exslider1.SelectRange = true; exslider1.SelStart = 2; exslider1.SelLength = 2; exslider1.Value = 1; exslider1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSSel,0x1000000); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exSelPart,"selection");
75. How can I change the visual appearance of the selection in the control
exslider1.SelectRange = true; exslider1.SelStart = 2; exslider1.SelLength = 2; exslider1.Value = 1; exslider1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exHSSel,0x1000000); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exSelPart,"selection");
74. Is there any option to select a range in the control, or to highlight my selection
exslider1.SelectRange = true; exslider1.SelStart = 2; exslider1.SelLength = 2; exslider1.Value = 1;
73. How can I specify the upper and lower parts using gradient colors
exslider1.Value = 3; exslider1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); exslider1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn"); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exHSLower,0x1000000); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exHSUpper,0x2000000);
72. How can I specify the upper and lower parts using gradient colors
exslider1.Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical; exslider1.Value = 3; exslider1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); exslider1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn"); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSLower,0x1000000); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSUpper,0x2000000);
71. How can I change the color of the progress bar
exslider1.ShowThumbProgress = true; exslider1.set_VisiblePart(exontrol.EXSLIDERLib.PartEnum.exBackgroundPart,false); exslider1.TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exNoTicks; exslider1.Value = 3; exslider1.set_Background(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumb,Color.FromArgb(0,0,0));
70. How can I change the visual appearance of the progress bar using your EBN files
exslider1.ShowThumbProgress = true; exslider1.set_VisiblePart(exontrol.EXSLIDERLib.PartEnum.exBackgroundPart,false); exslider1.TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exNoTicks; exslider1.Value = 3; exslider1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); exslider1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn"); exslider1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn"); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumb,0x1000000); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbP,0x2000000); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbD,0x1000000); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbH,0x3000000);
69. How can I show a progress bar
exslider1.ShowThumbProgress = true; exslider1.set_VisiblePart(exontrol.EXSLIDERLib.PartEnum.exBackgroundPart,false); exslider1.TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exNoTicks; exslider1.Value = 3;
68. May I change the color of the ticks
exslider1.TickColor = Color.FromArgb(255,0,0);
67. How do I specify the frequency of the ticks on the control
exslider1.TickFrequency = 2;
66. How can I show the tickers on bottom/right side only
exslider1.TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exBottomRight;
65. How can I show the tickers on top/left side only
exslider1.TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exTopLeft;
64. How can I show the tickers on both sides
exslider1.TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exBoth;
63. How can I hide the tickers
exslider1.TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exNoTicks;
62. Is there any function to show the tooltip
exslider1.ShowToolTip("This message is shown when ShowToolTip methoid is called",null,null,null,null);
61. Is there any function to highligth the control when it gets the focus
exslider1.ShowFocusRect = true;
60. I am using your control in a C++ application, and I would preffer handle messages instead events
exslider1.NotifyParent = true;
59. How can I change the visual appearance of the thumb usign your EBN files
exslider1.Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical; exslider1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); exslider1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn"); exslider1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn"); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumb,0x1000000); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbP,0x2000000); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbD,0x1000000); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbH,0x3000000);
58. How can I change the visual appearance of the thumb usign your EBN files
exslider1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); exslider1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn"); exslider1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn"); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumb,0x1000000); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbP,0x2000000); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbD,0x1000000); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbH,0x3000000);
57. Can I indent the caption in parts of the control
exslider1.ThumbSize = 64; exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"20 pixels<br>from left"); exslider1.set_CaptionAlignment(exontrol.EXSLIDERLib.PartEnum.exThumbPart,exontrol.EXSLIDERLib.AlignmentEnum.LeftAlignment); exslider1.set_CaptionIndentX(exontrol.EXSLIDERLib.PartEnum.exThumbPart,20); exslider1.Value = 3;
56. Does your control support owner draw feature
exslider1.set_OwnerDrawPart(exontrol.EXSLIDERLib.PartEnum.exThumbPart,true);
55. Can I assing any extra data to a button or part of the control
exslider1.set_UserData(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"This is just some extra data assigned to the control's thumb");
54. How can I specify the size of the thumb
exslider1.ThumbSize = 48;
53. Can I change the tooltip's border using your EBN files
exslider1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); exslider1.set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exToolTipAppearance,0x1000000); exslider1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" + ""; exslider1.Value = 4;
52. Can I change the tooltip's background color
exslider1.ToolTipText = "This is <bgcolor=FF0000>just a text</bgcolor> that's displayed when the user clicks and drags t" + "he thumb to a new position"; exslider1.Value = 4;
51. Can I change the tooltip's background color
exslider1.set_Background(exontrol.EXSLIDERLib.BackgroundPartEnum.exToolTipBackColor,Color.FromArgb(0,0,0)); exslider1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" + ""; exslider1.Value = 4;
50. Can I change the tooltip's foreground color
exslider1.ToolTipText = "This is <fgcolor=FF0000>just a text</fgcolor> that's displayed when the user clicks and drags t" + "he thumb to a new position"; exslider1.Value = 4;
49. Can I change the tooltip's foreground color
exslider1.set_Background(exontrol.EXSLIDERLib.BackgroundPartEnum.exToolTipForeColor,Color.FromArgb(0,0,0)); exslider1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" + ""; exslider1.Value = 4;
48. Can I change the tooltip's width
exslider1.BeginUpdate(); exslider1.ToolTipWidth = 256; exslider1.ToolTipText = "This is <font Tahoma;12>just a text with a different font</font> that's displayed when the user" + " clicks and drags the thumb to a new position"; exslider1.Value = 4; exslider1.EndUpdate();
47. Can I change the tooltip's font
exslider1.BeginUpdate(); exslider1.ToolTipTitle = "Title"; exslider1.ToolTipText = "This is <font Tahoma;12>just a text with a different font</font> that's displayed when the user" + " clicks and drags the thumb to a new position"; exslider1.Value = 4; exslider1.EndUpdate();
46. Can I change the tooltip's font
exslider1.BeginUpdate(); stdole.IFontDisp f = new stdole.StdFont(); f.Name = "Tahoma"; f.Size = 12; exslider1.ToolTipFont = (f as stdole.IFontDisp); exslider1.ToolTipTitle = "Title"; exslider1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" + ""; exslider1.Value = 4; exslider1.EndUpdate();
45. Can I display a tooltip when user clicks the thumb and drags it to a new position
exslider1.ToolTipTitle = "Title"; exslider1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" + ""; exslider1.Value = 4;
44. How can I get the value from the cursor
int var_ValueFromPoint = exslider1.get_ValueFromPoint(-1,-1);
43. Is there any function to identify the part from the cursor
exontrol.EXSLIDERLib.PartEnum var_PartFromPoint = exslider1.get_PartFromPoint(-1,-1);
42. Is there any option to specify the value to be added or subtracted when user presses the contro's background
exslider1.LargeChange = 2;
41. Is there any option to specify the value to be added or subtracted when user presses the up or down button
exslider1.SmallChange = 1;
40. How do I specify the maxmimum value in the control
exslider1.Maximum = 20; exslider1.Value = 10;
39. How do I specify the minimum value in the control
exslider1.Minimum = 2; exslider1.Value = 3;
38. How do I change control's position
exslider1.Value = 4;
37. How do I change the position of the thumb
exslider1.Value = 4;
36. How do I enable or disable a part of the control
exslider1.Value = 2; exslider1.ThumbSize = 48; exslider1.set_EnablePart(exontrol.EXSLIDERLib.PartEnum.exThumbPart,false); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<fgcolor=808080>thumb</fgcolor>");
35. How do show or hide parts in the control
exslider1.set_VisiblePart(exontrol.EXSLIDERLib.PartEnum.exThumbPart,false);
34. How do I arrange the control vertically
exslider1.Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical;
33. How do I prevent painting the control when I perform several changes
exslider1.BeginUpdate(); exslider1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" + "/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" + "/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" + "x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); exslider1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif"); exslider1.set_HTMLPicture("p2","c:\\exontrol\\images\\auction.gif"); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>p1</img> thumb <img>p2</img> <br><br><br>... <img>1</img> icon"); exslider1.ThumbSize = 124; exslider1.EndUpdate();
32. How do I add icons
exslider1.ThumbSize = 64; exslider1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" + "/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" + "/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" + "x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>1</img>thumb");
31. How can I align the caption to the right
exslider1.ThumbSize = 64; exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"thumb right"); exslider1.set_CaptionAlignment(exontrol.EXSLIDERLib.PartEnum.exThumbPart,exontrol.EXSLIDERLib.AlignmentEnum.RightAlignment);
30. How can I align the caption to the left
exslider1.ThumbSize = 64; exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart," thumb left"); exslider1.set_CaptionAlignment(exontrol.EXSLIDERLib.PartEnum.exThumbPart,exontrol.EXSLIDERLib.AlignmentEnum.LeftAlignment);
29. How can show the caption using a different font
exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<font Tahoma;12>upper</font> part"); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<font ;4>lower</font> part"); exslider1.Value = 4;
28. Is there any option to display icons or pictures in the parts of the control
exslider1.ThumbSize = 124; exslider1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" + "/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" + "/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" + "x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); exslider1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif"); exslider1.set_HTMLPicture("p2","c:\\exontrol\\images\\auction.gif"); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>p1</img> thumb <img>p2</img> <br><br><br>... <img>1</img> icon");
27. Is there any option to display icons or pictures in the parts of the control
exslider1.ThumbSize = 124; exslider1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif"); exslider1.set_HTMLPicture("p2","c:\\exontrol\\images\\auction.gif"); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>p1</img> thumb <img>p2</img>");
26. Is there any option to display icons or pictures in the parts of the control
exslider1.ThumbSize = 96; exslider1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" + "/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" + "/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" + "x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>1</img> thumb <img>2</img>");
25. Is there any option to display icons or pictures in the parts of the control
exslider1.ThumbSize = 96; exslider1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" + "/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" + "/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" + "x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>1:4</img><img>1:4</img><img>1:4</img><img>1</img>thumb");
24. Is there any option to display icons or pictures in the parts of the control
exslider1.ThumbSize = 96; exslider1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" + "/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" + "/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" + "x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>1</img>thumb");
23. How can paint the caption using multiple lines
exslider1.ThumbSize = 48; exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"line1<br>line2");
22. How can change the background color for a portion of text
exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<bgcolor=FF0000><fgcolor=0000FF>upper</fgcolor></bgcolor> part"); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<bgcolor=0000FF><fgcolor=FF0000>upper</fgcolor></bgcolor> part"); exslider1.Value = 4;
21. How can change the foreground color for a portion of text
exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<fgcolor=FF0000>upper</fgcolor> part"); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<fgcolor=0000FF>upper</fgcolor> part"); exslider1.Value = 4;
20. How can show the caption as strikeout
stdole.IFontDisp f = new stdole.StdFont(); f.Name = "Tahoma"; f.Size = 12; exslider1.Font = (f as stdole.IFontDisp); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<s>upper</s> part"); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<s>lower</s> part"); exslider1.Value = 4;
19. How can underline a portion of the caption
stdole.IFontDisp f = new stdole.StdFont(); f.Name = "Tahoma"; f.Size = 12; exslider1.Font = (f as stdole.IFontDisp); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<u>upper</u> part"); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<u>lower</u> part"); exslider1.Value = 4;
18. How can I draw in italic a portion of the caption
stdole.IFontDisp f = new stdole.StdFont(); f.Name = "Tahoma"; f.Size = 12; exslider1.Font = (f as stdole.IFontDisp); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<i>upper</i> part"); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<i>lower</i> part"); exslider1.Value = 4;
17. How can I draw in bold a portion of the caption
stdole.IFontDisp f = new stdole.StdFont(); f.Name = "Tahoma"; f.Size = 12; exslider1.Font = (f as stdole.IFontDisp); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<b>upper</b> part"); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<b>lower</b> part"); exslider1.Value = 4;
16. How can I put a text on the background part in the lower or upper side
exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"upper"); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"lower"); exslider1.Value = 4;
15. How can I put a text on the background part
exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exBackgroundPart,"background");
14. How can I put a text on the thumb
exslider1.ThumbSize = 32; exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"thumb");
13. How can I disable the control
exslider1.Enabled = false;
12. How do I put a picture on the center of the control
exslider1.Picture = (exslider1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp); exslider1.PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.MiddleCenter;
11. How do I resize/stretch a picture on the control's background
exslider1.Picture = (exslider1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp); exslider1.PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.Stretch;
10. How do I put a picture on the control's center right bottom side
exslider1.Picture = (exslider1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp); exslider1.PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.LowerRight;
9. How do I put a picture on the control's center left bottom side
exslider1.Picture = (exslider1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp); exslider1.PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.LowerLeft;
8. How do I put a picture on the control's center top side
exslider1.Picture = (exslider1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp); exslider1.PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.UpperCenter; exslider1.Value = 5;
7. How do I put a picture on the control's right top corner
exslider1.Picture = (exslider1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp); exslider1.PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.UpperRight; exslider1.Value = 5;
6. How do I put a picture on the control's left top corner
exslider1.Picture = (exslider1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp); exslider1.PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.UpperLeft; exslider1.Value = 5;
5. How do I put a picture on the control's background
exslider1.Picture = (exslider1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
4. How can I change the size of control's font
exslider1.ThumbSize = 96; exslider1.Font.Size = 12; exslider1.ForeColor = Color.FromArgb(255,0,0); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"thumb");
3. How do I change the control's font
exslider1.ThumbSize = 32; exslider1.Font.Name = "Tahoma"; exslider1.ForeColor = Color.FromArgb(255,0,0); exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"thumb");
2. How can I change the control's foreground color
exslider1.ForeColor = Color.FromArgb(255,0,0); exslider1.ThumbSize = 32; exslider1.set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"thumb");
1. How can I change the control's background color
exslider1.BackColor = Color.FromArgb(0,255,0);