PrintDocument for WinForms | ComponentOne
C1.PrintDocument.6 Assembly / C1.C1Preview Namespace / C1PageCollection Class / Find Method / Find(Int32,Int32) Method
Specifies the logical horizontal coordinate of the page.
Specifies the logical vertical coordinate of the page.

In This Topic
    Find(Int32,Int32) Method
    In This Topic
    Searches the current collection for a C1Page with the specified logical coordinates (identified by the C1Page.X and C1Page.Y properties on a page).
    Syntax
    'Declaration
     
    Public Overloads Function Find( _
       ByVal pageX As Integer, _
       ByVal pageY As Integer _
    ) As C1Page
    public C1Page Find( 
       int pageX,
       int pageY
    )

    Parameters

    pageX
    Specifies the logical horizontal coordinate of the page.
    pageY
    Specifies the logical vertical coordinate of the page.

    Return Value

    The C1Page object that was found, or null.
    See Also