ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / FlowTile Class / Height Property






In This Topic
    Height Property (FlowTile)
    In This Topic
    Gets or sets the tile height in pixels. If it is set to null, it means the height will automatically fit the content.
    Syntax
    'Declaration
     
    
    Public Property Height As System.Nullable(Of Integer)
    'Usage
     
    
    Dim instance As FlowTile
    Dim value As System.Nullable(Of Integer)
     
    instance.Height = value
     
    value = instance.Height
    public System.Nullable<int> Height {get; set;}
    public read-write property Height: System.Nullable; 
    public function get,set Height : System.Nullable
    public: __property System.Nullable<int> get_Height();
    public: __property void set_Height( 
       System.Nullable<int> value
    );
    public:
    property System.Nullable<int> Height {
       System.Nullable<int> get();
       void set (    System.Nullable<int> value);
    }
    See Also