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 text
imageList.ShowText = true;
MessageBox.Show("Item text is visible");
// Hide the item text
imageList.ShowText = false;
MessageBox.Show("Item text is not visible");
// Show the item text again
imageList.ShowText = true;
MessageBox.Show("Item text is visible again");
}
Imports Leadtools.Windows.Controls
Imports Leadtools.Codecs
Imports 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 text
imageList.ShowText = True
MessageBox.Show("Item text is visible")
' Hide the item text
imageList.ShowText = False
MessageBox.Show("Item text is not visible")
' Show the item text again
imageList.ShowText = True
MessageBox.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 text
imageList.ShowText = true;
MessageBox.Show("Item text is visible");
// Hide the item text
imageList.ShowText = false;
MessageBox.Show("Item text is not visible");
// Show the item text again
imageList.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 text
imageList.ShowText = True
MessageBox.Show("Item text is visible")
' Hide the item text
imageList.ShowText = False
MessageBox.Show("Item text is not visible")
' Show the item text again
imageList.ShowText = True
MessageBox.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