RemoveRegionByID Method (GdViewer)
In This Topic
Removes a highlighted region specified by its unique identifier related to the document currently displayed in the GdViewer control.
These regions, if present, determines the currently defined highlighted regions on the displayed document.
Syntax
Parameters
- RegionID
- A unique region identifier of the specified region. You can obtain this identifier using the GetRegionID method or when creating regions using the AddRegion(String,Double,Double,Double,Double,Color,RegionFillMode) method.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.
Example
How to remove previously selected region using its identifier.
'We assume that the GdViewer1 control has been properly integrated and your document has been properly displayed as well.
Dim regID As Integer = 0, regCount As Integer = GdViewer1.RegionCount()
If regCount > 0 Then
'Expecting some regions have been marked as selected.
Dim status As GdPictureStatus = GdPictureStatus.OK
For j As Integer = 0 To regCount-1
regID = GdViewer1.GetRegionID(j)
If GdViewer1.GetRegionSelected(regID) Then
status = GdViewer1.RemoveRegionByID(regID)
If status <> GdPictureStatus.OK Then Exit For
End If
Next
GdViewer1.Redraw()
If status <> GdPictureStatus.OK Then MessageBox.Show("Removing regions has failed. Status: " + status.ToString(), "GdViewer.RemoveRegionByID")
Else
MessageBox.Show("No highlighted region found related to this document. Status: " + GdViewer1.GetStat().ToString(), "GdViewer.RemoveRegionByID")
End If
//We assume that the GdViewer1 control has been properly integrated and your document has been properly displayed as well.
int regID = 0, regCount = GdViewer1.RegionCount();
if (regCount > 0)
{
//Expecting some regions have been marked as selected.
GdPictureStatus status = GdPictureStatus.OK;
for (int j = 0; j < regCount; j++)
{
regID = GdViewer1.GetRegionID(j);
if (GdViewer1.GetRegionSelected(regID))
{
status = GdViewer1.RemoveRegionByID(regID);
if (status != GdPictureStatus.OK)
break;
}
}
GdViewer1.Redraw();
if (status != GdPictureStatus.OK)
MessageBox.Show("Removing regions has failed. Status: " + status.ToString(), "GdViewer.RemoveRegionByID");
}
else
MessageBox.Show("No highlighted region found related to this document. Status: " + GdViewer1.GetStat().ToString(), "GdViewer.RemoveRegionByID");
See Also
Reference
GdViewer Class
GdViewer Members
GetRegionSelected Method
RegionCount Method
GetRegionID Method
RemoveAllRegions Method
RemoveRegionByName Method
SearchText(String,Int32,Boolean) Method
SearchText(String,Int32,Boolean,Boolean) Method
SearchText(Int32,String,Int32,Boolean,Double,Double,Double,Double) Method
SearchText(Int32,String,Int32,Boolean,Boolean,Double,Double,Double,Double) Method
AddRegion(String,Double,Double,Double,Double,Color,RegionFillMode) Method