RemoveSelectedZone Example for Visual Basic

Private Sub Command28_Click()
   Dim nRet As Integer
   nRet = RasterDoc.RemoveSelectedZone (0) 
   If nRet = 0 Then
      MsgBox ("The selected zone is deleted from Zone list in the page")
   Else
      MsgBox ("Can't delete the selected zone or there is no selected zone")
   End If
End Sub