Created
August 18, 2014 02:25
-
-
Save RyanABailey/e11224ca2c8cd7670d6b to your computer and use it in GitHub Desktop.
Custom web party property
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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