ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearPageView Class / Page Property




In This Topic
    Page Property (ImGearPageView)
    In This Topic
    Gets or sets page associated with the control - automatically mapped to the Page property of the associated ImGearPageDisplay object.
    Syntax
    'Declaration
     
    Public Property Page As ImGearPage
    'Usage
     
    Dim instance As ImGearPageView
    Dim value As ImGearPage
     
    instance.Page = value
     
    value = instance.Page
    public ImGearPage Page {get; set;}
    public: __property ImGearPage* get_Page();
    public: __property void set_Page( 
       ImGearPage* value
    );
    public:
    property ImGearPage^ Page {
       ImGearPage^ get();
       void set (    ImGearPage^ value);
    }

    Property Value

    ImageGear.Core.ImGearPage class.
    Remarks
    This property represents the ImageGear.Core.ImGearPage class associated with the control. This property is automatically connected to the Display property. It will always refer to the same ImageGear.Core.ImGearPage class object as the Page property of that ImGearDisplay object. Note that if ImGearPageView class Page property is set, its Display property will automatically also be set, and vice versa.
    See Also