Indicates whether the item text is shown in the control.
public bool ShowItemText { get; set; } public:property bool ShowItemText{bool get()void set(bool value)}
true if the item text is shown in the control; otherwise, false. Default is true
When the value of the ShowItemText property is set to true, the item RasterImageListItem.Text value is shown in the item.
using Leadtools.WinForms;using Leadtools;using Leadtools.Codecs;using Leadtools.Drawing;/// This example will show a <see cref="RasterImageList"/> control with the item text and then without the text.public void RasterImageList_ShowItemText(RasterImageList imageList){// Show the item textimageList.ShowItemText = true;MessageBox.Show("Item text is visible");// Hide the item textimageList.ShowItemText = false;MessageBox.Show("Item text is not visible");// Show the item text againimageList.ShowItemText = true;MessageBox.Show("Item text is visible again");}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
