Remove Slider.UnitFormat
authorsung-su.kim <sung-su.kim@samsung.com>
Thu, 6 Jul 2017 03:46:02 +0000 (12:46 +0900)
committersung-su.kim <sung-su.kim@samsung.com>
Thu, 6 Jul 2017 05:14:31 +0000 (14:14 +0900)
- UX not defined
- EFL-948
- TCAPI-2355

Change-Id: Ib68bf24d58b5002a8c6d73fced2a8b24e62adf6a

src/ElmSharp/ElmSharp/Slider.cs
test/ElmSharp.Test/TC/SliderTest1.cs [changed mode: 0644->0755]
test/ElmSharp.Test/TC/SliderTest2.cs

index 3122a55..41fb507 100755 (executable)
@@ -120,30 +120,6 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Sets or gets the format string for the unit label.
-        /// </summary>
-        /// <remarks>
-        /// Unit label is displayed all the time, if set, after the slider's bar.
-        /// In the horizontal mode, on the right and in the vertical mode, at the bottom.If NULL,
-        /// the unit label won't be visible. If not, it sets the format string for the label text.
-        /// For the label text a floating point value is provided,
-        /// so the label text can display up to 1 floating point value.
-        /// Note that this is optional.Use a format string such as "%1.2f meters" for example,
-        /// and it displays values like: "3.14 meters" for a value equal to 3.14159.By default, unit label is disabled.
-        /// </remarks>
-        public string UnitFormat
-        {
-            get
-            {
-                return Interop.Elementary.elm_slider_unit_format_get(RealHandle);
-            }
-            set
-            {
-                Interop.Elementary.elm_slider_unit_format_set(RealHandle, value);
-            }
-        }
-
-        /// <summary>
         /// Sets or gets the format string for the indicator label.
         /// </summary>
         /// <remarks>
old mode 100644 (file)
new mode 100755 (executable)
index c59b9a8..0d0f53a
@@ -38,7 +38,6 @@ namespace ElmSharp.Test
             Slider sld1 = new Slider(window)
             {
                 Text = "Slider Test",
-                UnitFormat = "%1.2f meters",
                 IndicatorFormat = "%1.2f meters",
                 Minimum = 0.0,
                 Maximum = 100.0,
index 7fe3ec6..b17ca38 100755 (executable)
@@ -38,7 +38,6 @@ namespace ElmSharp.Test
             Slider sld = new Slider(window)
             {
                 Text = "Slider Test",
-                UnitFormat = "%1.2f meters",
                 IndicatorFormat = "%1.2f meters",
                 Minimum = 0.0,
                 Maximum = 100.0,