C#
VB
C++
Gets or sets a value that indicate whether to show the items text.
public bool ShowText { get; set; } Public Property ShowText As Boolean true to show the items text, otherwise; false. Default value is true.
Changing this property will make this control loop through all the items and setting the ImageListItem.ShowText accordingly.
using Leadtools.Help;using Leadtools.Windows.Controls;using Leadtools;using Leadtools.Codecs;/// This example will show a <see cref="ImageList"/> control with the item text and then without the text.public void ImageList_ShowText(ImageList imageList){// Show the item textimageList.ShowText = true;MessageBox.Show("Item text is visible");// Hide the item textimageList.ShowText = false;MessageBox.Show("Item text is not visible");// Show the item text againimageList.ShowText = true;MessageBox.Show("Item text is visible again");}
Imports Leadtools.Windows.ControlsImports Leadtools.CodecsImports Leadtools''' This example will show a <see cref="ImageList"/> control with the item text and then without the text.Public Sub ImageList_ShowText(ByVal imageList As ImageList)' Show the item textimageList.ShowText = TrueMessageBox.Show("Item text is visible")' Hide the item textimageList.ShowText = FalseMessageBox.Show("Item text is not visible")' Show the item text againimageList.ShowText = TrueMessageBox.Show("Item text is visible again")End Sub
using Leadtools.Help;using Leadtools.Windows.Controls;/// This example will show a <see cref="ImageList"/> control with the item text and then without the text.public void ImageList_ShowText(ImageList imageList){// Show the item textimageList.ShowText = true;MessageBox.Show("Item text is visible");// Hide the item textimageList.ShowText = false;MessageBox.Show("Item text is not visible");// Show the item text againimageList.ShowText = true;MessageBox.Show("Item text is visible again");}
Imports Leadtools.Windows.Controls''' This example will show a <see cref="ImageList"/> control with the item text and then without the text.Public Sub ImageList_ShowText(ByVal imageList As ImageList)' Show the item textimageList.ShowText = TrueMessageBox.Show("Item text is visible")' Hide the item textimageList.ShowText = FalseMessageBox.Show("Item text is not visible")' Show the item text againimageList.ShowText = TrueMessageBox.Show("Item text is visible again")End Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
