Height Property (SVGStyle)
In This Topic
A value that indicates the height of the SVG element.
Syntax
'Declaration
Public Property Height As System.Nullable(Of Integer)
'Usage
Dim instance As SVGStyle
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