Boolean will be set to true if the detected line is a dashed line. If false, the line is solid.
Syntax
public bool IsDashed {get; set;}
public: __property bool get_IsDashed();
public: __property void set_IsDashed(
bool value
);
public:
property bool IsDashed {
bool get();
void set ( bool value);
}
'Declaration
Public Property IsDashed As Boolean
'Usage
Dim instance As GraphicLine
Dim value As Boolean
instance.IsDashed = value
value = instance.IsDashed
See Also