ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Document Assembly / GrapeCity.ActiveReports.Document.Section Namespace / ClippingStack Class / IsRectOutside Method / IsRectOutside(Single,Single,Single,Single) Method
X coordinate of the rectangle
Y coordinate of the rectangle
Width of the rectangle
Height of the rectangle

In This Topic
    IsRectOutside(Single,Single,Single,Single) Method
    In This Topic
    Represents whether the element is completely outside the rectangle.
    Syntax
    'Declaration
     
    Public Overloads Function IsRectOutside( _
       ByVal x As Single, _
       ByVal y As Single, _
       ByVal width As Single, _
       ByVal height As Single _
    ) As Boolean
    public bool IsRectOutside( 
       float x,
       float y,
       float width,
       float height
    )

    Parameters

    x
    X coordinate of the rectangle
    y
    Y coordinate of the rectangle
    width
    Width of the rectangle
    height
    Height of the rectangle

    Return Value

    True if element is entirely outside rectangle, otherwise returns false.
    See Also