domainName property
The name of the domain to use on this field.
The domain must already exist in the geodatabase (see Geodatabase.createDomain). The default value of an empty string indicates that no domain should be used.
Implementation
String get domainName {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_FieldDescription_getDomainName(
_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set domainName(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_FieldDescription_setDomainName(
_handle, coreValue.bytes, errorHandler);
});
}