ImageGear .NET v24.12 - Updated
OnMarkChanged Property




ImageGear24.Web Assembly > ImageGear.Web.UI Namespace > PageView Class : OnMarkChanged Property
Gets or sets user defined Javascript event handler to receive client events that indicate when a mark on the page is changed.
Syntax
'Declaration
 
<CategoryAttribute("Client PageView Control Events")>
<DescriptionAttribute("A user defined Javascript event handler to receive the Client markChanged Event.")>
Public Property OnMarkChanged As String
'Usage
 
Dim instance As PageView
Dim value As String
 
instance.OnMarkChanged = value
 
value = instance.OnMarkChanged
[Category("Client PageView Control Events")]
[Description("A user defined Javascript event handler to receive the Client markChanged Event.")]
public string OnMarkChanged {get; set;}
[Category("Client PageView Control Events")]
[Description("A user defined Javascript event handler to receive the Client markChanged Event.")]
public: __property string* get_OnMarkChanged();
public: __property void set_OnMarkChanged( 
   string* value
);
[Category("Client PageView Control Events")]
[Description("A user defined Javascript event handler to receive the Client markChanged Event.")]
public:
property String^ OnMarkChanged {
   String^ get();
   void set (    String^ value);
}
Remarks

The collection will raise this event whenever the value of any property of a mark changes.

Note that one exception to this event is the client Javascript "Mark.selected" property. This object will not raise a markChanged event when that property changes. Instead, this object will raise a client Javascript "markSelectionChanged" event.

When the page raises this event, it will provide the changed client Javascript "Mark" object and the name of the property that changed as the event argument.

See Also

Reference

PageView Class
PageView Members