RemoveZone Example for Visual Basic

Private Sub Command11_Click()
   Dim nRet As Integer
   nRet = RasterDoc.RemoveZone (0, 0) 
   If nRet = 0 Then
      MsgBox ("The specified zone is deleted from the specified page")
   Else
      MsgBox ("The engine couldn't delete the specified zone")
   End If
End Sub