StrokeWidth Property (SVGStyle)
In This Topic
A value that indicates the stroke width.
Syntax
'Declaration
<JsonAttribute("stroke-width")>
Public Property StrokeWidth As System.Nullable(Of Integer)
'Usage
Dim instance As SVGStyle
Dim value As System.Nullable(Of Integer)
instance.StrokeWidth = value
value = instance.StrokeWidth
[Json("stroke-width")]
public System.Nullable<int> StrokeWidth {get; set;}
public read-write property StrokeWidth: System.Nullable;
JsonAttribute("stroke-width")
public function get,set StrokeWidth : System.Nullable
[Json("stroke-width")]
public: __property System.Nullable<int> get_StrokeWidth();
public: __property void set_StrokeWidth(
System.Nullable<int> value
);
[Json("stroke-width")]
public:
property System.Nullable<int> StrokeWidth {
System.Nullable<int> get();
void set ( System.Nullable<int> value);
}
See Also