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