| 패키지 | ga.util | 
| 인터페이스 | public interface IConnectionService | 
| 구현자 | Wrapper, WrapperHostBase | 
| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
| 메서드 | 정의 주체 | ||
|---|---|---|---|
		 The connection was closed.  | IConnectionService | ||
		 The connection was made, if success=false, the connection attempt failed
		 
		   | IConnectionService | ||
		 Return the form's Active data, either from the Guide or the PDF.  | IConnectionService | ||
		 Return the form's data
		 
		   | IConnectionService | ||
		 Return the guides draft data including state information (Data is retrieved from the PDF if PDF is active.  | IConnectionService | ||
         Returns a field's value as an Object
         
		   | IConnectionService | ||
 
		 Return the requested property.  | IConnectionService | ||
 
		 Set the data into the form - returns false if failed.  | IConnectionService | ||
         Sets a field's value, returns success true or false
         
		   | IConnectionService | ||
		 Set the property, returns false if the operation failed
		 
		   | IConnectionService | ||
 
		 Performs the submit action based on the value of the Submit From
		 option in the Guide Design perspective within Adobe Digital Enterprise Platform Document Services - Workbench 10.0.  | IConnectionService | ||
		 Submits the data to the server - return true if the submit was performed
		 - returns false if validations fail 
		 
		   | IConnectionService | ||
connectionClosed | () | 메서드 | 
 public function connectionClosed():void| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
The connection was closed.
connectionOpened | () | 메서드 | 
 public function connectionOpened(success:Boolean):void| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
The connection was made, if success=false, the connection attempt failed
매개 변수
success:Boolean — the status of the open request
		 
		  | 
getActiveData | () | 메서드 | 
 public function getActiveData(callback:Function = null):String| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
Return the form's Active data, either from the Guide or the PDF. PDF requires a callback.
매개 변수
callback:Function (default = null) — the function to be called when an asynchronous operation is required to retrieve the data, as when the PDF is active.
		 
		  | 
String — String
		 
		  | 
getData | () | 메서드 | 
getDraftData | () | 메서드 | 
 public function getDraftData(callback:Function = null):String| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
Return the guides draft data including state information (Data is retrieved from the PDF if PDF is active. PDF requires a callback).
매개 변수
callback:Function (default = null) — the function to be called when an asynchronous operation is required to retrieve the data, as when the PDF is active.
		 
		  | 
String — String
		 
		  | 
getFieldValue | () | 메서드 | 
 public function getFieldValue(som:String):Object| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
Returns a field's value as an Object
매개 변수
som:String — the identifier of the field to retrieve the data from.  eg. "EntityRoot.Client[1].Address.City" or for xfa - #som("form1.subform[1].Address.City") 
		 
		  | 
Object — Object
		 
          | 
getProperty | () | 메서드 | 
 public function getProperty(property:String):Object| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
Return the requested property. Sypported properties are: showSubmitButton = "true"|"false"
매개 변수
property:String — the name of the property to retieve a value from
		 
		  | 
Object — Object
		 
		  | 
setData | () | 메서드 | 
 public function setData(data:String):void| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
Set the data into the form - returns false if failed. Throws an exception if the data is not valid XML.
매개 변수
data:String — the content to be used as the current data
		  | 
setFieldValue | () | 메서드 | 
 public function setFieldValue(som:String, value:Object):Boolean| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
Sets a field's value, returns success true or false
매개 변수
som:String — the identifier of the field to retrieve the data from.  eg. "EntityRoot.Client[1].Address.City" or for xfa - #som("form1.subform[1].Address.City") 
		  | |
value:Object — the value to assign to the targeted item
		 
		  | 
Boolean — Boolean
		 
          | 
setProperty | () | 메서드 | 
 public function setProperty(property:String, value:Object):Boolean| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
Set the property, returns false if the operation failed
매개 변수
property:String — the name of the property to retieve a value from
		  | |
value:Object — the value to set the provided property with.  Object types must match
		 
		  | 
Boolean — Boolean
		 
		  | 
submitData | () | 메서드 | 
 public function submitData():Boolean| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
Performs the submit action based on the value of the Submit From option in the Guide Design perspective within Adobe Digital Enterprise Platform Document Services - Workbench 10.0. This method returns true if the submission performs successfully.
| SubmitFrom option | Behavior | 
|---|---|
| Guide | Submits the Guide data to the Document Server. | 
| Displays the PDF rendition of the Guide. A user then clicks the appropriate submit button on the PDF form. | |
| Printed Form | Displays the PDF rendition of the Guide. A user then prints the PDF and submits the form manually. | 
| Hosted Application | The submit button does not display on the last panel of the Guide. This option transfer control of the Guide submission to the hosting application. In this case, a user clicks a button within the hosting application, for example the Complete button within Adobe Digital Enterprise Platform Document Services - Workspace 10.0, to submit the Guide data. | 
Boolean — Boolean
		 
		  | 
submitDataWithCB | () | 메서드 | 
 public function submitDataWithCB(callback:Function):Boolean| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Adobe Digital Enterprise Platform Document Services - Guides 9 SP2 | 
| 런타임 버전: | AIR 1.0, Flash Player 10.2 | 
Submits the data to the server - return true if the submit was performed - returns false if validations fail
매개 변수
callback:Function — the function to be called when the submit is an asynchronous operation (default)
		 
		  | 
Boolean — Boolean
		 
		  | 
Tue Jun 12 2018, 03:17 PM Z