[read-only]
This property contains a vector of error messages as strings after a call
to an importer method is the throwOnError property is set to
false, which is the default.
The configuration property contains the IConfiguration instance that
the importer needs when creating new TextFlow instances. This property
is initially set to null.
Implementation public function get configuration():IConfiguration public function set configuration(value:IConfiguration):void
This property contains a vector of error messages as strings after a call
to an importer method is the throwOnError property is set to
false, which is the default. If there were no errors, the
property returns null. The property is reset on each method
call.
Implementation public function get errors():Vector.<String>
throwOnError
property
throwOnError:Boolean
Language Version :
ActionScript 3.0
Runtime Versions :
Flash Player 10, AIR 1.5
The throwOnError property controls how the importer handles errors.
If set to true, methods throw an Error instance on errors.
If set to false, which is the default, errors are collected
into a vector of strings and stored in the errors property,
and the importer does not throw.
Implementation public function get throwOnError():Boolean public function set throwOnError(value:Boolean):void
useClipboardAnnotations
property
useClipboardAnnotations:Boolean
Language Version :
ActionScript 3.0
Runtime Versions :
Flash Player 10, AIR 1.5
Controls whether or not the
importer should handle the extra information necessary for the clipboard.
When data comes in from the clipboard, it might contain partial paragraphs;
paragraphs that are missing the terminator or newline character. If useClipboardAnnotations
is true, the importer marks these partial paragraphs with a
ConverterBase.MERGE_TO_NEXT_ON_PASTE attribute. This causes the paste
operation to correctly handle merging of the pasted paragraph (and any list or div elements
that may include the paragraph) into the text.
Implementation public function get useClipboardAnnotations():Boolean public function set useClipboardAnnotations(value:Boolean):void