attributeName property
Attribute's name.
Implementation
String get attributeName {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_AttributeParameterValue_getAttributeName(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}
Implementation
set attributeName(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_AttributeParameterValue_setAttributeName(
_handle,
coreValue.bytes,
errorHandler,
);
});
}