バージョン

NextButtonClicked プロパティ

[次へ] ボタンがクリックされると発生するイベント。
シンタックス
'宣言
 
Public Property NextButtonClicked As String
public string NextButtonClicked {get; set;}
使用例
// The client side event NextButtonClicked takes two parameters, sender and e.
// Sender is the object which is raising the event
// e is the ImageViewerButtonEventArgs
function WebImageViewer_NextButtonClicked(sender, e) {
  var imageViewer = $find("WebImageViewer1");
            
   // Gets the HTML DOM element associated with the event 
   var buttonElement = e.getButtonElem();
           
   // Get the scroll animation object  
   var scrollAnimations = imageViewer.get_scrollAnimations();

   // Set the Animation type to continuous
   scrollAnimations.set_type($IG.ScrollAnimation.Continuous);

   // Specify the direction
   imageViewer.navigateNext();
}
Me.WebImageViewer1.ClientEvents.NextButtonClicked = "WebImageViewer_NextButtonClicked"
this.WebImageViewer1.ClientEvents.NextButtonClicked = "WebImageViewer_NextButtonClicked";
参照