Apitron.PDF.Kit library for .NET
Assembly: Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
The color.
Gets or sets the color of the border.
Namespace: Apitron.PDF.Kit.FlowLayout.Navigation
Assembly: Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax
Property Value
Type: ColorThe color.
Remarks
Examples
C#
TextBlock textBlock = new TextBlock("some text"); ... document.Add(new TextBlock("simple link to element with dashed border") { Link = new CrossReference(textBlock) { BorderColor = RgbColors.Pink, BorderStyle = new AnnotationBorderStyle(2, AnnotationBorderType.Dashed, new BoxStyleDashPattern(new int[] { 5, 5 })) } });
See Also