Skip to content

Instantly share code, notes, and snippets.

@sAbakumoff
Last active August 29, 2015 14:07
Embed
What would you like to do?
// 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