Skip to content

Instantly share code, notes, and snippets.

@RyanABailey
Created August 18, 2014 02:25
Show Gist options
  • Select an option

  • Save RyanABailey/e11224ca2c8cd7670d6b to your computer and use it in GitHub Desktop.

Select an option

Save RyanABailey/e11224ca2c8cd7670d6b to your computer and use it in GitHub Desktop.
Custom web party property
private DisplayEnum _display = DisplayEnum.TitleAndBorder;
[WebBrowsable(true), Personalizable(PersonalizationScope.Shared)]
public DisplayEnum Display
{
get { return _display; }
set { _display = value; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment