| Package | lc.foundation.events | 
| Class | public class ObjectResultEvent | 
| Inheritance | ObjectResultEvent  LiveCycleEvent  Event  Object | 
| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
ObjectResultEvent event is dispatched when an object is retrieved. 
	 
	 | Property | Defined By | ||
|---|---|---|---|
|  | bubbles : Boolean [read-only] 
	Indicates whether an event is a bubbling event. | Event | |
|  | cancelable : Boolean [read-only] 
	Indicates whether the behavior associated with the event can be prevented. | Event | |
|  | constructor : Object 
	 A reference to the class object or constructor function for a given object instance. | Object | |
|  | currentTarget : Object [read-only] 
	The object that is actively processing the Event object with an event listener. | Event | |
|  | eventPhase : uint [read-only] 
	The current phase in the event flow. | Event | |
| result : Object 
		 The object that stores the results. | ObjectResultEvent | ||
|  | target : Object [read-only] 
	The event target. | Event | |
|  | token : lc.foundation.util:Token [read-only]  
		  The token that represents the call to the method. | LiveCycleEvent | |
|  | type : String [read-only] 
	The type of event. | Event | |
| Method | Defined By | ||
|---|---|---|---|
| ObjectResultEvent(type:String, bubbles:Boolean, cancelable:Boolean, object:Object, token:lc.foundation.util:Token) 
		 Constructor. | ObjectResultEvent | ||
| [override] 
		 Creates a copy of an ObjectResultEvent object 
		 and sets the value of each property to match that of the original. | ObjectResultEvent | ||
|  | 
	 A utility function for implementing the toString() method in custom 
	 ActionScript 3.0 Event classes. | Event | |
|  | 
	 Indicates whether an object has a specified property defined. | Object | |
|  | 
	Checks whether the preventDefault() method has been called on the event. | Event | |
|  | 
	 Indicates whether an instance of the Object class is in the prototype chain of the object specified 
	 as the parameter. | Object | |
|  | 
	Cancels an event's default behavior if that behavior can be canceled. | Event | |
|  | 
	 Indicates whether the specified property exists and is enumerable. | Object | |
|  | 
     Sets the availability of a dynamic property for loop operations. | Object | |
|  | 
	Prevents processing of any event listeners in the current node and any subsequent nodes in 
	the event flow. | Event | |
|  | 
	Prevents processing of any event listeners in nodes subsequent to the current node in the 
	event flow. | Event | |
|  | 
	 Returns the string representation of this object, formatted according to locale-specific conventions. | Object | |
|  | 
	Returns a string containing all the properties of the Event object. | Event | |
|  | 
	 Returns the primitive value of the specified object. | Object | |
| Constant | Defined By | ||
|---|---|---|---|
| ADD_ATTACHMENT_COMPLETE : String = "addAttachmentComplete" [static] 
		 A special value that specifies attachments were added to a task. | ObjectResultEvent | ||
| ADD_NOTE_COMPLETE : String = "addNoteComplete" [static] 
		 A special value that specifies notes were added to a task. | ObjectResultEvent | ||
| DATA_RESULT : String = "dataResult" [static]  
		 A special value that specifies data is available from a submitted form. | ObjectResultEvent | ||
| DELETE_ATTACHMENT_COMPLETE : String = "deleteAttachmentComplete" [static] 
		 A special value that specifies an attachment was deleted from a task. | ObjectResultEvent | ||
| EXPORT_BUSINESS_CALENDAR_COMPLETE : String = "exportBusinesscalendarComplete" [static] 
		 A special value that specifies that the business calendars were exported. | ObjectResultEvent | ||
| FIND_GROUP_NAME : String = "groupName" [static] 
		 A special value that specifies that a search for a group name occurred. | ObjectResultEvent | ||
| GET_ATTACHMENT_DOCUMENT_COMPLETE : String = "getAttachmentDocumentComplete" [static] 
		 A special value that specifies that the retrieval of document attachments completed. | ObjectResultEvent | ||
| GET_COMPLETION_COMMENT : String = "getCompletionComment" [static] 
		 A special value that specifies to retrieve comments for a completed task. | ObjectResultEvent | ||
| IMPORT_BUSINESS_CALENDAR_COMPLETE : String = "importBusinesscalendarComplete" [static] 
		 A special value that specifies that the business calendars were imported. | ObjectResultEvent | ||
| PRESUBMIT_COMPLETE : String = "preSubmitComplete" [static]  
		 A special value that specifies that the task id was stored in the session. | ObjectResultEvent | ||
| RENDER_COMPLETE : String = "renderComplete" [static]  
		 A special value that specifies the render operation to display a form completed. | ObjectResultEvent | ||
| RESULT : String = "result" [static]  
		 A special value that specifies a generic result was provided. | ObjectResultEvent | ||
| SAVE_DATA_COMPLETE : String = "saveDataComplete" [static]  
		 A special value that specifies form data was saved. | ObjectResultEvent | ||
| SEARCH_TEMPLATE_RESULT : String = "searchTemplateResult" [static] 
		 A special value that specifies a search template executed and results are available. | ObjectResultEvent | ||
| STARTPOINT_INVOCATION_COMPLETE : String = "startpointInvocationComplete" [static]  
		 A special value that specifies a process was started and completed. | ObjectResultEvent | ||
| STARTPOINT_RESULT : String = "startpointResult" [static]  
		 A special value that specifies a process was started and a result was provided. | ObjectResultEvent | ||
| SUBMIT_COMPLETE : String = "submitComplete" [static]  
		 A special value that specifies form data was submitted. | ObjectResultEvent | ||
| SUBMIT_VALIDATION_ERROR : String = "submitValidationError" [static]  
		 A special value that specifies a validation error occurred while submitting the form. | ObjectResultEvent | ||
| TASK_COMPLETE : String = "taskComplete" [static] 
		 A special value that specifies the task completed. | ObjectResultEvent | ||
| TASK_EXTRA_RESULT : String = "taskExtraResult" [static]  
		 A special value that specifies that an extra task result was provided when the process started. | ObjectResultEvent | ||
| TASK_RESULT : String = "taskResult" [static] 
		 A special value that specifies that task results are available. | ObjectResultEvent | ||
| UPDATE_ATTACHMENT_COMPLETE : String = "updateAttachmentComplete" [static] 
		 A special value that specifies that the update of attachments completed. | ObjectResultEvent | ||
| UPDATE_COMPLETION_COMMENT : String = "updateCompletionComment" [static] 
		 A special value that specifies the completion comments were updated. | ObjectResultEvent | ||
| result | property | 
public var result:Object| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
The object that stores the results.
| ObjectResultEvent | () | Constructor | 
public function ObjectResultEvent(type:String, bubbles:Boolean, cancelable:Boolean, object:Object, token:lc.foundation.util:Token)| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
Constructor.
Parameters| type:String— Specifies the type of the event. | |
| bubbles:Boolean— Specifies whether the event object participates in the bubbling stage of the event flow. | |
| cancelable:Boolean— Specifies whether the event object can be canceled. | |
| object:Object— Specifies result object. | |
| token:lc.foundation.util:Token— Specifies the request token. | 
| clone | () | method | 
override public function clone():Event| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
		 Creates a copy of an ObjectResultEvent object 
		 and sets the value of each property to match that of the original.  
		 
| Event— A copy of theObjectResultEventobject. | 
| ADD_ATTACHMENT_COMPLETE | Constant | 
public static const ADD_ATTACHMENT_COMPLETE:String = "addAttachmentComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies attachments were added to a task.
| ADD_NOTE_COMPLETE | Constant | 
public static const ADD_NOTE_COMPLETE:String = "addNoteComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies notes were added to a task.
| DATA_RESULT | Constant | 
public static const DATA_RESULT:String = "dataResult"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies data is available from a submitted form.
| DELETE_ATTACHMENT_COMPLETE | Constant | 
public static const DELETE_ATTACHMENT_COMPLETE:String = "deleteAttachmentComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies an attachment was deleted from a task.
| EXPORT_BUSINESS_CALENDAR_COMPLETE | Constant | 
public static const EXPORT_BUSINESS_CALENDAR_COMPLETE:String = "exportBusinesscalendarComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies that the business calendars were exported.
| FIND_GROUP_NAME | Constant | 
public static const FIND_GROUP_NAME:String = "groupName"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies that a search for a group name occurred.
| GET_ATTACHMENT_DOCUMENT_COMPLETE | Constant | 
public static const GET_ATTACHMENT_DOCUMENT_COMPLETE:String = "getAttachmentDocumentComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies that the retrieval of document attachments completed.
| GET_COMPLETION_COMMENT | Constant | 
public static const GET_COMPLETION_COMMENT:String = "getCompletionComment"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies to retrieve comments for a completed task.
| IMPORT_BUSINESS_CALENDAR_COMPLETE | Constant | 
public static const IMPORT_BUSINESS_CALENDAR_COMPLETE:String = "importBusinesscalendarComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies that the business calendars were imported.
| PRESUBMIT_COMPLETE | Constant | 
public static const PRESUBMIT_COMPLETE:String = "preSubmitComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies that the task id was stored in the session.
| RENDER_COMPLETE | Constant | 
public static const RENDER_COMPLETE:String = "renderComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies the render operation to display a form completed.
| RESULT | Constant | 
public static const RESULT:String = "result"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies a generic result was provided.
| SAVE_DATA_COMPLETE | Constant | 
public static const SAVE_DATA_COMPLETE:String = "saveDataComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies form data was saved.
| SEARCH_TEMPLATE_RESULT | Constant | 
public static const SEARCH_TEMPLATE_RESULT:String = "searchTemplateResult"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies a search template executed and results are available.
| STARTPOINT_INVOCATION_COMPLETE | Constant | 
public static const STARTPOINT_INVOCATION_COMPLETE:String = "startpointInvocationComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies a process was started and completed.
| STARTPOINT_RESULT | Constant | 
public static const STARTPOINT_RESULT:String = "startpointResult"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies a process was started and a result was provided.
| SUBMIT_COMPLETE | Constant | 
public static const SUBMIT_COMPLETE:String = "submitComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies form data was submitted.
| SUBMIT_VALIDATION_ERROR | Constant | 
public static const SUBMIT_VALIDATION_ERROR:String = "submitValidationError"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies a validation error occurred while submitting the form.
| TASK_COMPLETE | Constant | 
public static const TASK_COMPLETE:String = "taskComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies the task completed.
| TASK_EXTRA_RESULT | Constant | 
public static const TASK_EXTRA_RESULT:String = "taskExtraResult"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies that an extra task result was provided when the process started.
| TASK_RESULT | Constant | 
public static const TASK_RESULT:String = "taskResult"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies that task results are available.
| UPDATE_ATTACHMENT_COMPLETE | Constant | 
public static const UPDATE_ATTACHMENT_COMPLETE:String = "updateAttachmentComplete"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies that the update of attachments completed.
| UPDATE_COMPLETION_COMMENT | Constant | 
public static const UPDATE_COMPLETION_COMMENT:String = "updateCompletionComment"| Language Version: | ActionScript 3.0 | 
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 | 
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 | 
A special value that specifies the completion comments were updated.
Thu Dec 4 2014, 05:50 PM -08:00