Interface IEditableCollectionViewAddNewItem
Defines methods and properties that a CollectionView implements to enable specifying adding items of a specific type.
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
public interface IEditableCollectionViewAddNewItem : IEditableCollectionView
Properties
CanAddNewItem
Gets a value that indicates whether a specified object can be added to the collection.
Declaration
bool CanAddNewItem { get; }
Property Value
System.Boolean
|
Methods
AddNewItem(Object)
Adds the specified object to the collection.
Declaration
object AddNewItem(object newItem)
Parameters
System.Object
newItem
The object to add to the collection. |
Returns
System.Object
|