IScriptContextTryGetOrCreateField Method (String, FieldItemType, FieldItem) | |
Gets or creates the field matching both the given name and field type. A return value indicates
an existing field with type was found or a new field instance was created successfully.
Namespace:
Compiled.EDD.Scripting
Assembly:
Compiled.EDD.Scripting (in Compiled.EDD.Scripting.dll) Version: 7.6.1.3-5cb5c356
Syntax bool TryGetOrCreateField(
string fieldName,
FieldItemType fieldType,
out FieldItem outputField
)
Parameters
- fieldName
- Type: SystemString
The name of the field. - fieldType
- Type: Compiled.EDD.ScriptingFieldItemType
The data type of the field. - outputField
- Type: Compiled.EDD.ScriptingFieldItem
When this method returns, contains the result of an existing or created field.
Return Value
Type:
Booleantrue if a field with the name and field type found, or created by this method; otherwise,
false.
See Also