ImageGear .NET v24.12 - Updated
OnMarkSelectionChanged Property




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

The page will raise this event after a mark is added to, or removed from, the client Javascript "selectedMarks" collection. The object will raise this event after it has updated the list of selected marks.

When the page raises this event, it will provide the client Javascript "MarkCollection" of selected marks as the event argument.

See Also

Reference

PageView Class
PageView Members