![]() |
Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Controls Assembly > Leadtools.Controls Namespace > ImageViewerItem Class : IsVisible Property |
Invisible items (the value of IsVisible is false) will not be rendered nor participate in layout calculations.
For more information, refer Image Viewer Items, Image Viewer Layouts and Image Viewer Rendering.
Imports Leadtools Imports Leadtools.Controls Imports Leadtools.Codecs Imports Leadtools.Drawing Imports Leadtools.ImageProcessing Imports Leadtools.ImageProcessing.Color _imageViewer.BeginUpdate() _imageViewer.Items(0).IsVisible = Not _imageViewer.Items(0).IsVisible MessageBox.Show(String.Format("_imageViewer.Items[0].IsVisible = {0}", _imageViewer.Items(0).IsVisible)) _imageViewer.EndUpdate()
using Leadtools; using Leadtools.Controls; using Leadtools.Codecs; using Leadtools.Drawing; using Leadtools.ImageProcessing; using Leadtools.ImageProcessing.Color; _imageViewer.BeginUpdate(); _imageViewer.Items[0].IsVisible = !_imageViewer.Items[0].IsVisible; MessageBox.Show(string.Format("_imageViewer.Items[0].IsVisible = {0}", _imageViewer.Items[0].IsVisible)); _imageViewer.EndUpdate();