ViewLabelProperties constructor
Create a view label property with specified parameters.
Parameters:
animationEnabled
— true to enable, false to disable the animation.labelingEnabled
— true to enable, false to disable the labeling.
Implementation
factory ViewLabelProperties(
{bool animationEnabled = false, bool labelingEnabled = true}) {
_initializeArcGISEnvironmentIfNeeded();
final handle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ViewLabelProperties_createWithParameters(
animationEnabled, labelingEnabled, errorHandler);
});
return ViewLabelProperties._withHandle(handle);
}