ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc.Olap Namespace / PivotFieldCollection Class / MaxItems Property






In This Topic
    MaxItems Property (PivotFieldCollection)
    In This Topic
    Gets or sets the maximum number of fields allowed in this collection.
    Syntax
    'Declaration
     
    
    Public Property MaxItems As System.Nullable(Of Integer)
    'Usage
     
    
    Dim instance As PivotFieldCollection
    Dim value As System.Nullable(Of Integer)
     
    instance.MaxItems = value
     
    value = instance.MaxItems
    public System.Nullable<int> MaxItems {get; set;}
    public read-write property MaxItems: System.Nullable; 
    public function get,set MaxItems : System.Nullable
    public: __property System.Nullable<int> get_MaxItems();
    public: __property void set_MaxItems( 
       System.Nullable<int> value
    );
    public:
    property System.Nullable<int> MaxItems {
       System.Nullable<int> get();
       void set (    System.Nullable<int> value);
    }
    Remarks
    This property is set to null by default, which means any number of items is allowed.
    See Also