fillOutlineColor property

NSExpression get fillOutlineColor

The outline color of the fill. Matches the value of fillColor if unspecified.

This property is only applied to the style if fillPattern is set to nil, and fillAntialiased is set to an expression that evaluates to YES. Otherwise, it is ignored.

You can set this property to an expression containing any of the following:

Constant UIColor values Predefined functions, including mathematical and string operators Conditional expressions Variable assignments and references to assigned variables Interpolation and step functions applied to the $zoomLevel variable and/or feature attributes

Implementation

NSExpression get fillOutlineColor {
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_fillOutlineColor);
  return NSExpression.castFromPointer(_ret, retain: true, release: true);
}
set fillOutlineColor (NSExpression value)

The outline color of the fill. Matches the value of fillColor if unspecified.

This property is only applied to the style if fillPattern is set to nil, and fillAntialiased is set to an expression that evaluates to YES. Otherwise, it is ignored.

You can set this property to an expression containing any of the following:

Constant UIColor values Predefined functions, including mathematical and string operators Conditional expressions Variable assignments and references to assigned variables Interpolation and step functions applied to the $zoomLevel variable and/or feature attributes

Implementation

set fillOutlineColor(NSExpression value) {
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setFillOutlineColor_, value.ref.pointer);

}