DataRepeaterItemCloneEventArgs Class
Provides data for the ItemCloning event.
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Name | Description | |
---|---|---|
![]() | DataRepeaterItemCloneEventArgs(DataRepeaterItem) | Initializes a new instance of the DataRepeaterItemCloneEventArgs class. |
Name | Description | |
---|---|---|
![]() | Handled | Gets or sets a value that specifies whether the cloning is handled by the developer. |
![]() | Source | Gets the DataRepeaterItem from which the new DataRepeaterItem will be cloned. |
![]() | Target | Gets or sets the new DataRepeaterItem that is the result of the cloning operation. |
Name | Description | |
---|---|---|
![]() | Equals(Object) | (Inherited from Object.) |
![]() | Finalize() | (Inherited from Object.) |
![]() | GetHashCode() | (Inherited from Object.) |
![]() | GetType() | (Inherited from Object.) |
![]() | MemberwiseClone() | (Inherited from Object.) |
![]() | ToString() | (Inherited from Object.) |
Use the ItemCloning event to run custom code before cloning or to override the cloning process. The event occurs before the DataRepeaterItem and its controls are cloned from the ItemTemplate.
The DataRepeaterItemCloneEventArgs contains a Handled property that specifies whether the control should handle the cloning. If you set the Handled property to True, you are overriding the default cloning process and must handle all cloning yourself. To run custom code before the default cloning starts, set the Handled property to False.
![]() |
---|
If you want to make minor changes to the cloning process, consider using the ItemCloned event instead. |
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.