-
Notifications
You must be signed in to change notification settings - Fork 30
Bubble Type: Audio Bubble
AudioBubble.cs
##Description The text bubble is used for displaying voice messages or other audio files.
##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.AudioTypeContains the resource type of the Bubble's audio.
Can be either Url for a URL requested audio file, or File for an attached audio file
Example:
type = bubble.AudioType;
//type is now equal to Url###Recording
bool bubble.RecordingIf the Audio Bubble is recording or not.
Example:
recording = bubble.EmojiSpans;
//recording is now equal to true###Length
int bubble.SecondsContains the length of the bubbles audio in seconds.
Example:
length = bubble.Seconds;
//length is now equal to 10###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###File Name
string bubble.FileNameThe audios filename.
Example:
filename = bubble.FileName;
//filename is now equal to http://example.com/test.wav© The Disa Open Source Project
If you have any questions please contact [email protected]!
