Leadtools.Windows.Annotations Namespace > AnnObject Class : IsVisible Property |
public bool IsVisible {get; set;}
'Declaration Public Property IsVisible As Boolean
'Usage Dim instance As AnnObject Dim value As Boolean instance.IsVisible = value value = instance.IsVisible
public bool IsVisible {get; set;}
get_IsVisible();
set_IsVisible(value);
Public Sub AnnObject_Visible(ByVal container As AnnContainer) For Each obj As AnnObject In container.Children If Not obj.IsVisible Then obj.IsVisible = True End If Next obj End Sub
public void AnnObject_Visible(AnnContainer container) { foreach (AnnObject obj in container.Children) { if (!obj.IsVisible) obj.IsVisible = true; } }
public void AnnObject_Visible(AnnContainer container) { foreach (AnnObject obj in container.Children) { if (!obj.IsVisible) obj.IsVisible = true; } }
Public Sub AnnObject_Visible(ByVal container As AnnContainer) For Each obj As AnnObject In container.Children If (Not obj.IsVisible) Then obj.IsVisible = True End If Next obj End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2