Property | Defined by | ||
---|---|---|---|
binaryValue : String | VCardPhoto | ||
bytes : ByteArray | VCardPhoto | ||
externalValue : String | VCardPhoto | ||
type : String | VCardPhoto |
Method | Defined by | ||
---|---|---|---|
VCardPhoto(type:String = null, binaryValue:String = null, externalValue:String = null)
To save a photo, either binaryValue or externalValue are required, but not both.
| VCardPhoto |
binaryValue | property |
binaryValue:String
[read-write]Implementation
public function get binaryValue():String
public function set binaryValue(value:String):void
bytes | property |
bytes:ByteArray
[read-write]Implementation
public function get bytes():ByteArray
public function set bytes(value:ByteArray):void
externalValue | property |
externalValue:String
[read-write]Implementation
public function get externalValue():String
public function set externalValue(value:String):void
type | property |
type:String
[read-write]Implementation
public function get type():String
public function set type(value:String):void
VCardPhoto | () | constructor |
public function VCardPhoto(type:String = null, binaryValue:String = null, externalValue:String = null)
To save a photo, either binaryValue or externalValue are required, but not both. If binaryValue is passed in, type is required. If externalValue is passed in, type is not required.
Parameterstype:String (default = null ) — The image type of the photo. Required if binaryValue is passed in.
|
|
binaryValue:String (default = null ) — The BASE64 encoded binary value of the photo. Either binaryValue or externalValue are required, but not both.
|
|
externalValue:String (default = null ) — The URI to an external photo. Either binaryValue or externalValue are required, but not both.
|