Change Span's access modifier to public
authorsung-su.kim <sung-su.kim@samsung.com>
Wed, 11 Jan 2017 07:18:54 +0000 (16:18 +0900)
committerKangho Hur <kangho.hur@samsung.com>
Mon, 24 Apr 2017 04:36:48 +0000 (13:36 +0900)
- Span.GetDecoratedText() and Span.GetStyle() turned to public from internal.

Change-Id: I7411025faa76e751f5191f70467621600ce0f82d

Xamarin.Forms.Platform.Tizen/Native/Span.cs [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 0e3f000..c92fefc
@@ -144,7 +144,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native
                /// <summary>
                /// This method return text decorated with markup if FormattedText is set or plain text otherwise.
                /// </summary>
-               internal string GetDecoratedText()
+               public string GetDecoratedText()
                {
                        if (FormattedText != null)
                        {
@@ -275,7 +275,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native
                                           .Replace("\n", "<br>");
                }
 
-               internal string GetStyle()
+               public string GetStyle()
                {
                        StringBuilder sb = new StringBuilder();