[NUI] Open Text InputFilter APIs
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BaseComponents / TextEvent.cs
index a21e843..6319d95 100644 (file)
@@ -21,17 +21,29 @@ using System.ComponentModel;
 namespace Tizen.NUI.BaseComponents
 {
     /// <summary>
-    /// AnchorClickedEventArgs is a class to record anchor click event arguments which will sent to user.
+    /// AnchorClickedEventArgs is a class to record anchor click event arguments which will be sent to user.
     /// </summary>
-    /// This will be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
-    [EditorBrowsable(EditorBrowsableState.Never)]
+    /// <since_tizen> 9 </since_tizen>
     public class AnchorClickedEventArgs : EventArgs
     {
         /// <summary>
-        /// Anchor href.
+        /// Anchor href(hypertext reference).
         /// </summary>
-        /// This will be public opened in tizen_6.5 after ACR done. Before ACR, need to be hidden as inhouse API.
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 9 </since_tizen>
         public string Href { get; set; }
     }
+
+    /// <summary>
+    /// InputFilteredEventArgs is a class to record input filter event arguments which will be sent to user.
+    /// </summary>
+    /// <since_tizen> 9 </since_tizen>
+    public class InputFilteredEventArgs : EventArgs
+    {
+        /// <summary>
+        /// The type of InputFilter that filtered the input is stored. <br />
+        /// If the input is filtered by the Accepted Regex of the InputFilter, the Accept type is stored. <br />
+        /// If the input is filtered by the Rejected Regex of the InputFilter, the Reject type is stored. <br />
+        /// </summary>
+        public InputFilterType Type { get; set; }
+    }
 }
\ No newline at end of file