Interface IShape

This interface represents a shape.

Namespace: PSPDFKit.Pdf.Annotation
Assembly: PSPDFKit.dll
Syntax
public interface IShape : IAnnotation

Properties

StrokeColor

A Windows.UI.Color for the shape lines

Declaration
Color? StrokeColor { get; set; }
Property Value
Type Description
System.Nullable<Windows.UI.Color>

StrokeDashArray

Optional dash pattern used to draw the shape lines for dashed line style.

Declaration
IList<int> StrokeDashArray { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Int32>

StrokeWidth

The width of the line in page size pixels. By default, we use values between 1 and 40 in the UI. The stroke width will scale when you zoom in.

Declaration
float StrokeWidth { get; set; }
Property Value
Type Description
System.Single

See Also