Update description of FloatingButton
[platform/core/csapi/xamarin-forms-extension.git] / Tizen.Xamarin.Forms.Extension / FloatingButtonMovablePosition.cs
1 // Copyright 2016 by Samsung Electronics, Inc.,
2 //
3 // This software is the confidential and proprietary information
4 // of Samsung Electronics, Inc. ("Confidential Information"). You
5 // shall not disclose such Confidential Information and shall use
6 // it only in accordance with the terms of the license agreement
7 // you entered into with Samsung.
8
9 namespace Tizen.Xamarin.Forms.Extension
10 {
11     /// <summary>
12     /// Enumerates values that describe the MovablePosition of FloatingButton.
13     /// </summary>
14     public enum FloatingButtonMovablePosition
15     {
16         /// <summary>
17         /// Allows the FloatingButton can be placed in all FloatingButtonPosition.
18         /// </summary>
19         All,
20
21         /// <summary>
22         /// Allows the FloatingButton can be placed in only LEFT and RIGHT FloatingButtonPosition.
23         /// </summary>
24         LeftRightOnly,
25
26         /// <summary>
27         /// Blocks movement of the FloatingButton.
28         /// </summary>
29         None,
30     }
31 }