length property
The length of the field.
The default value is 0. This only applies to text fields.
Implementation
int get length {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_FieldDescription_getLength(
_handle,
errorHandler,
);
});
}
Implementation
set length(int value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_FieldDescription_setLength(
_handle,
value,
errorHandler,
);
});
}