Shortcut check for markup in a string, before attempting to parse and split the strin...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / text-view / text-view.cpp
index f03d94a..f785e10 100644 (file)
@@ -366,6 +366,16 @@ TextView::ScrolledSignalV2& TextView::ScrolledSignal()
   return GetImpl( *this ).ScrolledSignal();
 }
 
+void TextView::SetMarkupProcessingEnabled( bool enable )
+{
+  return GetImpl( *this ).SetMarkupProcessingEnabled( enable );
+}
+
+bool TextView::IsMarkupProcessingEnabled() const
+{
+  return GetImpl( *this ).IsMarkupProcessingEnabled();
+}
+
 TextView::TextView( Internal::TextView& implementation )
 : Control( implementation )
 {