Gets and sets a value indicating whether this component will leave the OCR data files that
are written to disk when it's destroyed.
Syntax
'Declaration
<System.ComponentModel.CategoryAttribute("Optimization")>
<System.ComponentModel.DescriptionAttribute("Indicates if SmartZoneOCR will not remove the OCR data files that it writes to disk so subsequent SmartZoneOCR objects will have a faster load time.")>
<System.ComponentModel.BrowsableAttribute(True)>
Public Property FastLoading As System.Boolean
'Usage
Dim instance As SmartZoneOCR
Dim value As System.Boolean
instance.FastLoading = value
value = instance.FastLoading
[System.ComponentModel.Category("Optimization")]
[System.ComponentModel.Description("Indicates if SmartZoneOCR will not remove the OCR data files that it writes to disk so subsequent SmartZoneOCR objects will have a faster load time.")]
[System.ComponentModel.Browsable(true)]
public System.bool FastLoading {get; set;}
public read-write property FastLoading: System.Boolean;
System.ComponentModel.CategoryAttribute("Optimization")
System.ComponentModel.DescriptionAttribute("Indicates if SmartZoneOCR will not remove the OCR data files that it writes to disk so subsequent SmartZoneOCR objects will have a faster load time.")
System.ComponentModel.BrowsableAttribute()
public function get,set FastLoading : System.boolean
[System.ComponentModel.Category("Optimization")]
[System.ComponentModel.Description("Indicates if SmartZoneOCR will not remove the OCR data files that it writes to disk so subsequent SmartZoneOCR objects will have a faster load time.")]
[System.ComponentModel.Browsable(true)]
public: __property System.bool get_FastLoading();
public: __property void set_FastLoading(
System.bool value
);
[System.ComponentModel.Category("Optimization")]
[System.ComponentModel.Description("Indicates if SmartZoneOCR will not remove the OCR data files that it writes to disk so subsequent SmartZoneOCR objects will have a faster load time.")]
[System.ComponentModel.Browsable(true)]
public:
property System.bool FastLoading {
System.bool get();
void set ( System.bool value);
}
Property Value
A boolean value which is
true if the data files are not destroyed with the
SmartZoneOCR object. Otherwise,
false is returned.
See Also