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






In This Topic
    Height Property (TransposedGridRowBase)
    In This Topic
    Gets or sets the height of the row.
    Syntax
    'Declaration
     
    
    Public Shadows Property Height As System.Nullable(Of Integer)
    'Usage
     
    
    Dim instance As TransposedGridRowBase
    Dim value As System.Nullable(Of Integer)
     
    instance.Height = value
     
    value = instance.Height
    public new System.Nullable<int> Height {get; set;}
    public read-write property Height: System.Nullable; 
    public hide function get,set Height : System.Nullable
    public: __property new System.Nullable<int> get_Height();
    public: __property new void set_Height( 
       System.Nullable<int> value
    );
    public:
    new property System.Nullable<int> Height {
       System.Nullable<int> get();
       void set (    System.Nullable<int> value);
    }
    Remarks
    Setting this property to null or negative values causes the element to use the parent collection's default size.
    See Also