flip property

EnumValue flip

Gets or sets how the TextBlock is displayed: Either normally or with a Horizontal or Vertical flip or both.

Possible values are GraphObject.None, GraphObject.FlipHorizontal, GraphObject.FlipVertical, or GraphObject.FlipBoth. The default is GraphObject.None.

Implementation

_i3.EnumValue get flip => _i4.getProperty(
      this,
      'flip',
    );
void flip=(EnumValue value)

Implementation

set flip(_i3.EnumValue value) {
  _i4.setProperty(
    this,
    'flip',
    value,
  );
}