Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Layout Namespace / Contour Class / Inflate Method / Inflate(Single,Single,Boolean,Object) Method
Distance between the left and right edges of the source contour and the corresponding edges of the new contour.
Distance between the top and bottom edges of the source contour and the corresponding edges of the new contour.
Indicates if the source contour circumscribes the inside area in counterclockwise direction.
The object that contains data about the new Contour.

In This Topic
    Inflate(Single,Single,Boolean,Object) Method
    In This Topic
    Creates a dependent Contour which is an enlarged copy of the source Contour.
    Syntax
    'Declaration
     
    Public Overloads Function Inflate( _
       ByVal inflateHorizontal As System.Single, _
       ByVal inflateVertical As System.Single, _
       Optional ByVal ccwInside As System.Boolean, _
       Optional ByVal tag As System.Object _
    ) As Contour
    public Contour Inflate( 
       System.float inflateHorizontal,
       System.float inflateVertical,
       System.bool ccwInside,
       System.object tag
    )

    Parameters

    inflateHorizontal
    Distance between the left and right edges of the source contour and the corresponding edges of the new contour.
    inflateVertical
    Distance between the top and bottom edges of the source contour and the corresponding edges of the new contour.
    ccwInside
    Indicates if the source contour circumscribes the inside area in counterclockwise direction.
    tag
    The object that contains data about the new Contour.

    Return Value

    The created Contour object.
    See Also