Documentation > CMS Template API Library > InputForm > Remove(List[String])
Remove
Overload for List
public System.Void Remove(List[String])
Parameters
| Name | Description | Type |
|---|---|---|
| fieldNames | The field name. | List<String> |
Code Example
C#
Sample:
List<string> fieldNames = new List<string>();
fieldNames.Add("title");
fieldNames.Add("description");
context.InputForm.Remove(fieldNames);