Controlling-access-to-fields.md
... ...
@@ -0,0 +1,13 @@
1
+#Controlling Access to Fields
2
+
3
+The field level property FieldFilterRegex is a regular expression property which filters based upon the string it's given. The user would not see any fields containing the words 'pass', 'admin' or 'pw'.
4
+
5
+C♯
6
+```csharp
7
+Izenda.AdHoc.AdHocSettings.FieldFilterRegex = "pass|pw|admin";
8
+```
9
+VB.NET
10
+```vb
11
+Izenda.AdHoc.AdHocSettings.FieldFilterRegex = "pass|pw|admin"
12
+```
13
+