label property
A label for the class break. "0 - 100000", for example.
Implementation
String get label {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ClassBreak_getLabel(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set label(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ClassBreak_setLabel(
_handle, coreValue.bytes, errorHandler);
});
}