Parameters
- fieldName
- The name of the field to be found.
Return Value
A positive integer value if the field is found indicating the index position of the field. If a field is not found with a name matching the fieldName, a -1 is returned.
| Exception | Description |
|---|---|
| ArcGIS.Core.Data.Exceptions.GeodatabaseException | A geodatabase-related exception has occurred. |
{
// Must be called within QueuedTask.Run
void WritingIntoGuidColumn(Row row, Field field, Guid guid)
{
row[field.Name] = "{" + guid.ToString() + "}";
}
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)