Creates a new TilingBrush with an empty pattern.

Namespace: TallComponents.PDF.Layout.Brushes
Assembly: TallComponents.PDF.Layout (in TallComponents.PDF.Layout.dll) Version: 3.0.63.0

Syntax

C#
public TilingBrush()
Visual Basic
Public Sub New

Remarks

Add shapes to the Pattern. The pattern is repeated across the area that is filled.

Examples

XML
CopyC#
 <paragraph type="textparagraph">
     <border>
         <background type="tilingbrush">
             <pattern width="50" height="50">
                 <shape type="rectangleshape" x="0" y="0" width="25" height="25">
                     <pen color="green" width="1"/>
                 </shape>
             </pattern>
         </background>
     </border>
     <fragment font="helvetica" fontsize="24">
         Tiling brush in XML
     </fragment>
</paragraph>

See Also