-
Notifications
You must be signed in to change notification settings - Fork 30
Bubble Type: Image Bubble
ImageBubble.cs
##Description The image bubble is used for displaying image messages.
##Special Properties
The following properties are special to this bubble type. In addition, there are bubble properties which apply to all bubble types. Those are listed here.
###Resource Type
Type bubble.ImageTypeContains the resource type of the Bubble's image.
Can be either Url for a URL requested image file, or File for an attached image file
Example:
type = bubble.ImageType;
//type is now equal to Url###Thumbnail Bytes
byte[] bubble.ThumbnailBytesContains the image thumbnail's bytes.
Example:
thumbnail = bubble.ThumbnailBytes;###Download Attempts
int bubble.DownloadAttemptHow many times the bubble has attempted to download the file.
Example:
attempts = bubble.DownloadAttempt;
//attempts is now equal to 3###Animation
bool bubble.IsAnimatedContains the information if the image is animated.
Example:
is_animated = bubble.IsAnimated;
//is_animated is now equal to false###File Name
string bubble.FileNameThe image's filename.
Example:
filename = bubble.FileName;
//filename is now equal to http://example.com/test.png© The Disa Open Source Project
If you have any questions please contact [email protected]!
