backgroundPattern property

NSExpression get backgroundPattern

Name of image in style images to use for drawing an image background. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512).

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

Constant string values Predefined functions, including mathematical and string operators Conditional expressions Variable assignments and references to assigned variables Step functions applied to the $zoomLevel variable

This property does not support applying interpolation functions to the $zoomLevel variable or applying interpolation or step functions to feature attributes.

Implementation

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

Name of image in style images to use for drawing an image background. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512).

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

Constant string values Predefined functions, including mathematical and string operators Conditional expressions Variable assignments and references to assigned variables Step functions applied to the $zoomLevel variable

This property does not support applying interpolation functions to the $zoomLevel variable or applying interpolation or step functions to feature attributes.

Implementation

set backgroundPattern(NSExpression value) {
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setBackgroundPattern_, value.ref.pointer);

}