height property

double height

The height of the GeometryEditorReticle.image displayed on the ArcGISMapViewController in device-independent pixels (DIPs). The default value is 135 DIPs.

If the GeometryEditorReticle.image has been set using GeometryEditorReticle.setImage, then this property returns a value of 0, and the image will be rendered using the size of the image.

Implementation

double get height {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeometryEditorReticle_getHeight(
      _handle,
      errorHandler,
    );
  });
}