ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / IItemsSource<T> Interface / NewItemCreator Property






In This Topic
    NewItemCreator Property (IItemsSource<T>)
    In This Topic
    Gets or sets a function that creates new items for the collection.
    Syntax
    'Declaration
     
    
    Property NewItemCreator As System.String
    'Usage
     
    
    Dim instance As IItemsSource(Of T)
    Dim value As System.String
     
    instance.NewItemCreator = value
     
    value = instance.NewItemCreator
    System.string NewItemCreator {get; set;}
    read-write property NewItemCreator: System.String; 
    function get,set NewItemCreator : System.String
    __property System.string* get_NewItemCreator();
    __property void set_NewItemCreator( 
       System.string* value
    );
    property System.String^ NewItemCreator {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    If the creator function is not supplied, try to create an uninitialized item of the appropriate type.
    See Also