ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc.Sheet Namespace / Sheet Class / Tables Property






In This Topic
    Tables Property (Sheet)
    In This Topic
    Gets the collection of the Table objects on this Sheet.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property Tables As System.Collections.Generic.IList(Of Table)
    'Usage
     
    
    Dim instance As Sheet
    Dim value As System.Collections.Generic.IList(Of Table)
     
    value = instance.Tables
    public System.Collections.Generic.IList<Table> Tables {get;}
    public read-only property Tables: System.Collections.Generic.IList; 
    public function get Tables : System.Collections.Generic.IList
    public: __property System.Collections.Generic.IList<Table*>* get_Tables();
    public:
    property System.Collections.Generic.IList<Table^>^ Tables {
       System.Collections.Generic.IList<Table^>^ get();
    }
    Remarks
    It allows to insert/remove Table on this Sheet via the tables collection.
    See Also