DesignerRegion.UserData Property
.NET Framework 3.0
Gets or sets optional user data to associate with the designer region.
Namespace: System.Web.UI.Design
Assembly: System.Design (in system.design.dll)
Assembly: System.Design (in system.design.dll)
/** @property */ public Object get_UserData () /** @property */ public void set_UserData (Object value)
public function get UserData () : Object public function set UserData (value : Object)
Not applicable.
Property Value
An object that contains user data stored for the designer region. The default is a null reference (Nothing in Visual Basic).Within a control designer implementation, use the UserData property to store or retrieve additional information for the designer region.
For example, if the control designer implementation supports selecting from multiple designer regions, you can use the UserData property in a control designer to store a unique index for each region. You can then use the UserData property for the region that is passed into the OnClick method to store the index for the currently selected region.
Community Additions
ADD
Show: