Skip to content

Instantly share code, notes, and snippets.

@sAbakumoff
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sAbakumoff/6c6fe3d523768b375f18 to your computer and use it in GitHub Desktop.
Save sAbakumoff/6c6fe3d523768b375f18 to your computer and use it in GitHub Desktop.
// 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