Removes a field from the form based on the fully qualified name, including its widget
annotations and references to them from any pages.
Syntax
'Declaration
Public Overloads Sub RemoveField( _
ByVal As String _
)
'Usage
Dim instance As Form
Dim fullName As String
instance.RemoveField(fullName)
public void RemoveField(
string
)
public: void RemoveField(
string*
)
public:
void RemoveField(
String^
)
Parameters
- fullName
- The fully qualified name (including path). For instance,
"Address" or "Details.Address".
See Also