Leadtools.Windows.Annotations Namespace > AnnObject Class : StrokeBrush Property |
public AnnBrush StrokeBrush {get; set;}
'Declaration Public Property StrokeBrush As AnnBrush
'Usage Dim instance As AnnObject Dim value As AnnBrush instance.StrokeBrush = value value = instance.StrokeBrush
The Stroke and StrokeBrush properties work in the following manner:
If StrokeBrush is set to null, then the value of Stroke is used to draw this object's outline.
If StrokeBrush is set to a valid object, then this value is used to draw the object's outline and the value of Stroke is ignored.
Stroke only supports a solid color while AnnBrush and its derived classes such as AnnLinearGradientBrush supports filling the drawing the outline the object with a linear brush.
To use an AnnObject with a transparent outline, set StrokeBrush to null and Stroke to System.Windows.Media.Colors.Transparent.
If this AnnObject does not support strokes (SupportsStroke value is false), this property will always return the default value and setting this property to any value will be ignored.
For XAML example, refer to AnnPolygonObject.
For C#/VB examples, refer to AnnAutomationManager.