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




In This Topic
    NotifyPageUp Property
    In This Topic
    Gets or sets a reference to a DelegatePageCaluclate delegate.
    Syntax
    'Declaration
     
    Public Property NotifyPageUp As ImGearPageView.DelegatePageCalculate
    'Usage
     
    Dim instance As ImGearPageView
    Dim value As ImGearPageView.DelegatePageCalculate
     
    instance.NotifyPageUp = value
     
    value = instance.NotifyPageUp
    public ImGearPageView.DelegatePageCalculate NotifyPageUp {get; set;}
    public: __property ImGearPageView.DelegatePageCalculate* get_NotifyPageUp();
    public: __property void set_NotifyPageUp( 
       ImGearPageView.DelegatePageCalculate* value
    );
    public:
    property ImGearPageView.DelegatePageCalculate^ NotifyPageUp {
       ImGearPageView.DelegatePageCalculate^ get();
       void set (    ImGearPageView.DelegatePageCalculate^ value);
    }

    Property Value

    ImGearPageView.DelegatePageCalculate delegate.
    Remarks
    If registered it is called when the Page Up key is pressed and will be used to calculate the amount of scrolling desired. If none is registered the ImGearPageView class control does not handle Page Up.
    See Also