[NUI] Open Text InputFilter APIs
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BaseComponents / TextEvent.cs
index d93fa4b..6319d95 100644 (file)
@@ -32,4 +32,18 @@ namespace Tizen.NUI.BaseComponents
         /// <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