Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. const Boolean c_boolEnableEditColumn = true;
  2. private Boolean _boolEnableEditColumn;
  3. [Category("Custom - Basics"),
  4. Personalizable(PersonalizationScope.Shared),
  5. WebBrowsable(true),
  6. DefaultValue(true),
  7. WebDisplayName("Enable Edit Column"),
  8. WebDescription("Show an edit column with an edit button for each item")]
  9. public Boolean boolEnableEditColumn
  10. {
  11. get { return _boolEnableEditColumn; }
  12. set { _boolEnableEditColumn = value; }
  13. }
  14.  
  15.  
  16. public SPGridWebPart()
  17. {
  18. boolEnableEditColumn = c_boolEnableEditColumn;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement