Document Solutions for PDF
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Layout Namespace / LayoutView Class / CreatePoint Method
The value to be multiplied by Width before adding to the position of the left side.
The value to be multiplied by Height before adding to the position of the top side.
The value to be added to the position of the left side.
The value to be added to the position of the top side.

In This Topic
    CreatePoint Method (LayoutView)
    In This Topic
    Creates a point associated with the LayoutView to be used as an anchor for LayoutRects.
    Syntax
    'Declaration
     
    Public Function CreatePoint( _
       ByVal widthFactor As System.Single, _
       ByVal heightFactor As System.Single, _
       Optional ByVal leftOffset As System.Single, _
       Optional ByVal topOffset As System.Single _
    ) As AnchorPoint
    public AnchorPoint CreatePoint( 
       System.float widthFactor,
       System.float heightFactor,
       System.float leftOffset,
       System.float topOffset
    )

    Parameters

    widthFactor
    The value to be multiplied by Width before adding to the position of the left side.
    heightFactor
    The value to be multiplied by Height before adding to the position of the top side.
    leftOffset
    The value to be added to the position of the left side.
    topOffset
    The value to be added to the position of the top side.

    Return Value

    The created AnchorPoint object.
    See Also