Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.AttachPanel / Tizen.Applications.AttachPanel / ContentCategory.cs
1 namespace Tizen.Applications.AttachPanel
2 {
3     /// <summary>
4     /// Enumeration for the attach panel content category.
5     /// </summary>
6     public enum ContentCategory
7     {
8         /// <summary>
9         /// Attaching images from the gallery
10         /// </summary>
11         Image = 1,
12         /// <summary>
13         /// Taking pictures to attach
14         /// </summary>
15         Camera,
16         /// <summary>
17         /// Taking a voice clip to attach
18         /// </summary>
19         Voice,
20         /// <summary>
21         /// Attaching video from the gallery
22         /// </summary>
23         Video,
24         /// <summary>
25         /// Attaching audio from my files
26         /// </summary>
27         Audio,
28         /// <summary>
29         /// Attaching calendar data from the calendar
30         /// </summary>
31         Calendar,
32         /// <summary>
33         /// Attaching contact data from the contacts
34         /// </summary>
35         Contact,
36         /// <summary>
37         /// Attaching files data from my files
38         /// </summary>
39         Myfiles,
40         /// <summary>
41         /// Taking a video clip to attach
42         /// </summary>
43         VideoRecorder,
44         /// <summary>
45         /// Attaching files from the document list
46         /// </summary>
47         Document,
48         /// <summary>
49         /// Launching apps to take pictures will be attached
50         /// </summary>
51         TakePicture,
52         /// <summary>
53         /// Attaching memo data from the memo
54         /// </summary>
55         Memo,
56     }
57 }