The CogCopyRegionTool type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| CanRaiseEvents | Gets a value indicating whether the component can raise an event. (Inherited from Component.) | |
| ChangedEventSuspended |
If nonzero, indicates that the raising of the Changed event has been
suspended. This value is incremented when SuspendChangedEvent is called
and decremented when ResumeAndRaiseChangedEvent is called.
(Inherited from CogSerializableChangedEventComponentBase.) | |
| Container | Gets the IContainer that contains the Component. (Inherited from Component.) | |
| CurrentRecordEnable | Enable creation of records by bitwise ORing the appropriate CurrentRecordConstants. | |
| DataBindings |
Gets the data bindings for the tool.
(Inherited from CogToolBase.) | |
| DesignMode | Gets a value that indicates whether the Component is currently in design mode. (Inherited from Component.) | |
| DestinationClipped | Returns True if the Region was partially or entirely outside the bounds of the OutputImage. This condition does not indicate an error and the tool will still copy as much of the region as possible in this case. | |
| DestinationImage | The image into which to copy the region of pixels, or Nothing to create a new image. | |
| DestinationRegion | Returns a destination region graphic that was created when the tool was last run by mapping the input region into the pixel space of the output image. | |
| Events | Gets the list of event handlers that are attached to this Component. (Inherited from Component.) | |
| FailOnInvalidDataBinding |
Specifies that the Run method is to fail if executed while one or more
data bindings are invalid.
(Inherited from CogToolBase.) | |
| HasChanged | (Inherited from CogSerializableChangedEventComponentBase.) | |
| InputImage | The tool will copy a portion of this image, or the entire image if Region=NULL. If FillRegion=True then InputImage is optional and used only to map the region into pixel coordinates. | |
| LastRunRecordDiagEnable | Enable creation of records by bitwise ORing the appropriate LastRunRecordDiagConstants. These are diagnostic records that may cause the Tool to have a longer execution time. | |
| LastRunRecordEnable | Enable creation of records by bitwise ORing the appropriate LastRunRecordConstants. | |
| Name | Gets or sets the name of the tool. (Overrides CogToolBase Name.) | |
| OutputImage | If DestinationImage was non-NULL when the tool ran, this just returns a reference to that image. Otherwise it returns a reference to a new image created by the tool. | |
| Region | Which portion of the InputImage shall be copied. If Region is NULL then the entire InputImage is copied. | |
| RunParams | Run parameters for region copying. | |
| RunStatus | Gets general information about the last call to Run. (Overrides CogToolBase RunStatus.) | |
| Site | Gets or sets the ISite of the Component. (Inherited from Component.) | |
| SourceClipped | Returns True if the Region was partially or entirely outside the bounds of the InputImage. This condition does not indicate an error and the tool will still copy as much of the region as possible in this case. | |
| StateFlags |
Returns the complete set of state flags supported on this object. The
flags may be indexed by name as shown in the following C# code snippet:
if (changedObject.StateFlags["Color"] & eventArgs.StateFlags) { ... }
(Inherited from CogSerializableChangedEventComponentBase.) | |
| UserData |
Gets a CogDictionary object that can be used to store application-specific information.
(Inherited from CogToolBase.) |
See Also