// introduce extension method: | |
public static class VieweExtensions | |
{ | |
public static bool IsSidebarVisible(this Sidebar sidebar) | |
{ | |
return | |
sidebar.ParametersPanel.Visible | sidebar.SearchPanel.Visible | | |
sidebar.ThumbnailsPanel.Visible | sidebar.TocPanel.Visible; | |
} | |
} | |
// Sample of usage : viewer1.Sidebar.IsSidebarVisible(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment