ImageViewEnableCustomDrawing Property
|
Set this property to True in order to enable custom view drawing.
Namespace:
Kofax.OmniPageCSDK.ToolBoxes
Assembly:
Kofax.OmniPageCSDK.ToolBoxes (in Kofax.OmniPageCSDK.ToolBoxes.dll) Version: 1.0.0.0
Syntax[DispIdAttribute(121)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
[BindableAttribute(BindableSupport.Yes)]
public bool EnableCustomDrawing { get; set; }
<DispIdAttribute(121)>
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
<BindableAttribute(BindableSupport.Yes)>
Public Property EnableCustomDrawing As Boolean
Get
Set
public:
[DispIdAttribute(121)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility::Hidden)]
[BindableAttribute(BindableSupport::Yes)]
property bool EnableCustomDrawing {
bool get ();
void set (bool value);
}
Property Value
Type:
Boolean
Remarks
When this property is enabled, the view generates BeforeCustomPaint,
AfterCustomPaint, BeforeZoneCustomDrawing and AfterZoneCustomDrawing events whenever the view surface or a particular zone is painted.
To learn more about the custom view drawing, see also the mentioned events' description. The default value for this property is False.
See Also