Class DrawingShapeInfo
Groups the Drawing Shape attached properties: Stroke, StrokeThickness, Fill, FillRule, IsShapeFilled, IsShapeClosed.
Inheritance
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public class DrawingShapeInfo : Object
Constructors
DrawingShapeInfo()
Declaration
public DrawingShapeInfo()
Properties
Fill
The Background of the shape in drawing adorner.
Declaration
public Brush Fill { get; set; }
Property Value
System.Windows.Media.Brush
|
FillRule
The FillRule of the shape in drawing adorner.
Declaration
public FillRule FillRule { get; set; }
Property Value
System.Windows.Media.FillRule
|
IsShapeClosed
Determines whether the shape in drawing adorner is closed.
Declaration
public bool IsShapeClosed { get; set; }
Property Value
System.Boolean
|
IsShapeFilled
Determines whether the shape in drawing adorner is filled.
Declaration
public bool IsShapeFilled { get; set; }
Property Value
System.Boolean
|
Stroke
The Stroke of the shape in drawing adorner.
Declaration
public Brush Stroke { get; set; }
Property Value
System.Windows.Media.Brush
|
StrokeThickness
The StrokeThickness of the shape in drawing adorner.
Declaration
public double StrokeThickness { get; set; }
Property Value
System.Double
|