Class ChartFloor
- class ooodev.calc.chart2.chart_floor.ChartFloor(owner, component, lo_inst=None)[source]
Bases:
Prop
[ChartFloor
],TheDictionaryPartial
,ChartDocPropPartial
,CalcDocPropPartial
,CalcSheetPropPartial
,FillPropertiesPartial
,LinePropertiesPartial
,FillColorPartial
,ChartFillGradientPartial
,ChartFillHatchPartial
,ChartFillImgPartial
,ChartFillPatternPartial
,BorderLinePropertiesPartial
,TransparencyPartial
,GradientPartial
Class for managing Chart2 Wall.
- __init__(owner, component, lo_inst=None)[source]
Constructor
- Parameters:
component (Any) – UNO Chart2 Wall Component.
lo_inst (LoInst, optional) – Lo Instance. Use when creating multiple documents. Defaults to None.
owner (ChartDiagram) –
- Return type:
None
- add_event_property_change(name, cb)
Adds a listener for an event.
Event is invoked when property is changed.
The callback
EventArgs.event_data
will contain acom.sun.star.beans.PropertyChangeEvent
struct.- Parameters:
name (str) – Property Name
cb (EventArgsCallbackT) – Callback
- Return type:
None
- add_event_property_change_events_disposing(name, cb)
Adds a listener for an event.
Event is invoked when the property listener is about to be disposed.
The callback
EventArgs.event_data
will contain a UNOcom.sun.star.lang.EventObject
struct.- Parameters:
name (str) – Property Name
cb (EventArgsCallbackT) – Callback
- Return type:
None
- add_event_vetoable_change(name, cb)
Adds a listener for an event.
Event is invoked when property is changed.
The callback
EventArgs.event_data
will contain acom.sun.star.beans.PropertyChangeEvent
struct.- Parameters:
name (str) – Property Name
cb (EventArgsCallbackT) – Callback
- Return type:
None
- add_event_vetoable_change_events_disposing(name, cb)
Adds a listener for an event.
Event is invoked when the property listener is about to be disposed.
The callback
EventArgs.event_data
will contain a UNOcom.sun.star.lang.EventObject
struct.- Parameters:
name (str) – Property Name
cb (EventArgsCallbackT) – Callback
- Return type:
None
- add_property_change_listener(name, listener)
Adds a listener for property changes.
- Parameters:
name (str) – The name of the property.
listener (Any) – The listener to be added.
- Return type:
None
- add_vetoable_change_listener(name, listener)
Adds a listener for vetoable changes.
- Parameters:
name (str) – The name of the property.
listener (Any) – The listener to be added.
- Return type:
None
- get_property(name, default=<object object>)
Get property value
- Parameters:
name (str) – Property Name.
default (Any, optional) – Return value if property value is
None
.
- Returns:
Property value or default.
- Return type:
Any
- get_property_set_info()
Returns the property set info.
- Returns:
The property set info.
- Return type:
XPropertySetInfo
- get_property_value(name)
Returns the value of a property.
- Parameters:
name (str) – The name of the property.
- Returns:
The value of the property.
- Return type:
Any
- remove_event_property_change(name)
Removes a listener for an event
- Parameters:
name (str) – Property Name
- Return type:
None
- remove_event_property_change_events_disposing(name)
Removes a listener for an event
- Parameters:
name (str) – Property Name
- Return type:
None
- remove_event_vetoable_change(name)
Removes a listener for an event
- Parameters:
name (str) – Property Name
- Return type:
None
- remove_event_vetoable_change_events_disposing(name)
Removes a listener for an event
- Parameters:
name (str) – Property Name
- Return type:
None
- remove_property_change_listener(name, listener)
Removes a listener for property changes.
- Parameters:
name (str) – The name of the property.
listener (Any) – The listener to be removed.
- Return type:
None
- remove_vetoable_change_listener(name, listener)
Removes a listener for vetoable changes.
- Parameters:
name (str) – The name of the property.
listener (Any) – The listener to be removed.
- Return type:
None
- set_property(**kwargs)
Set property value
- Parameters:
**kwargs (
Any
) – Variable length Key value pairs used to set properties.- Return type:
None
- set_property_value(name, value)
Sets the value of a property.
- Parameters:
name (str) – The name of the property.
value (Any) – The value of the property.
- Return type:
None
- style_area_color(color=-1)
Style Area Color.
- Parameters:
color (
Color
, optional) – FillColor Color. Defaults toStandardColor.AUTO_COLOR
.- Raises:
CancelEventError – If the event
before_style_area_color
is cancelled and not handled.- Returns:
FillColor instance or
None
if cancelled.- Return type:
FillColorT | None
- style_area_color_get()
Gets the Area Color Style.
- Raises:
CancelEventError – If the event
before_style_area_color_get
is cancelled and not handled.- Returns:
Area color style or
None
if cancelled.- Return type:
FillColorT | None
- style_area_gradient(*, style=GradientStyle.LINEAR, step_count=0, offset=Offset(x=50, y=50), angle=0, border=0, grad_color=ColorRange(start=0, end=16777215), grad_intensity=IntensityRange(start=100, end=100), name='')
Style Area Color.
- Parameters:
style (GradientStyle, optional) – Specifies the style of the gradient. Defaults to
GradientStyle.LINEAR
.step_count (int, optional) – Specifies the number of steps of change color. Defaults to
0
.offset (Offset, int, optional) – Specifies the X and Y coordinate, where the gradient begins. X is effectively the center of the
RADIAL
,ELLIPTICAL
,SQUARE
andRECT
style gradients. Defaults toOffset(50, 50)
.angle (Angle, int, optional) – Specifies angle of the gradient. Defaults to
0
.border (int, optional) – Specifies percent of the total width where just the start color is used. Defaults to
0
.grad_color (ColorRange, optional) – Specifies the color at the start point and stop point of the gradient. Defaults to
ColorRange(Color(0), Color(16777215))
.grad_intensity (IntensityRange, optional) – Specifies the intensity at the start point and stop point of the gradient. Defaults to
IntensityRange(100, 100)
.name (str, optional) – Specifies the Fill Gradient Name.
- Raises:
CancelEventError – If the event
before_style_area_gradient
is cancelled and not handled.- Returns:
Chart Fill Gradient instance or
None
if cancelled.- Return type:
ChartFillGradientT | None
Hint
GradientStyle
can be imported fromooo.dyn.awt.gradient_style
Angle
can be imported fromooodev.units
ColorRange
can be imported fromooodev.utils.data_type.color_range
Intensity
can be imported fromooodev.utils.data_type.intensity
IntensityRange
can be imported fromooodev.utils.data_type.intensity_range
Offset
can be imported fromooodev.utils.data_type.offset
- style_area_gradient_from_preset(preset)
Style Area Gradient from Preset.
- Parameters:
preset (PresetGradientKind) – Preset Gradient Kind.
- Returns:
Chart Fill Gradient instance.
- Return type:
Hint
PresetGradientKind
can be imported fromooodev.format.inner.preset.preset_gradient
- style_area_gradient_get()
Gets the Area Gradient Style.
- Raises:
CancelEventError – If the event
before_style_area_gradient_get
is cancelled and not handled.- Returns:
Gradient style or
None
if cancelled.- Return type:
ChartFillGradientT | None
- style_area_hatch(*, style=HatchStyle.SINGLE, color=0, space=0, angle=0, bg_color=-1)
Style Area Color.
- Parameters:
style (HatchStyle, optional) – Specifies the kind of lines used to draw this hatch. Default
HatchStyle.SINGLE
.color (
Color
, optional) – Specifies the color of the hatch lines. Default0
.space (float, UnitT, optional) – Specifies the space between the lines in the hatch (in
mm
units) or Class UnitT. Default0.0
angle (Angle, int, optional) – Specifies angle of the hatch in degrees. Default to
0
.bg_color (Color, optional) – Specifies the background Color. Set this
-1
(default) for no background color.
- Raises:
CancelEventError – If the event
before_style_area_hatch
is cancelled and not handled.- Returns:
Fill Image instance or
None
if cancelled.- Return type:
ChartFillHatchT | None
Hint
Angle
can be imported fromooodev.units
HatchStyle
can be imported fromooo.dyn.drawing.hatch_style
- style_area_hatch_from_preset(preset)
Style Area Gradient from Preset.
- Parameters:
preset (PresetHatchKind) – Preset Hatch Kind.
- Returns:
Chart Fill Hatch instance or
None
ifbefore_style_area_hatch_from_preset
event is cancelled.- Return type:
ChartFillHatchT | None
Hint
PresetHatchKind
can be imported fromooodev.format.inner.preset.preset_hatch
- style_area_image(*, bitmap=None, name='', mode=ImgStyleKind.TILED, size=None, position=None, pos_offset=None, tile_offset=None, auto_name=False)
Style Area Color.
- Parameters:
bitmap (XBitmap, optional) – Bitmap instance. If
name
is not already in the Bitmap Table then this property is required.name (str, optional) – Specifies the name of the image. This is also the name that is used to store bitmap in LibreOffice Bitmap Table.
mode (ImgStyleKind, optional) – Specifies the image style, tiled, stretched etc. Default
ImgStyleKind.TILED
.size (SizePercent, SizeMM, optional) – Size in percent (
0 - 100
) or size inmm
units.position (RectanglePoint) – Tiling position of Image.
pos_offset (Offset, optional) – Tiling position offset.
tile_offset (OffsetColumn, OffsetRow, optional) – The tiling offset.
auto_name (bool, optional) – Specifies if
name
is ensured to be unique. Defaults toFalse
.
- Raises:
CancelEventError – If the event
before_style_area_img
is cancelled and not handled.- Returns:
Fill Image instance or
None
if cancelled.- Return type:
ChartFillImgT | None
Hint
RectanglePoint
can be imported fromooo.dyn.drawing.rectangle_point
ImgStyleKind
can be imported fromooodev.format.inner.direct.write.fill.area.img
SizePercent
can be imported fromooodev.format.inner.common.format_types.size_percent
SizeMM
can be imported fromooodev.utils.data_type.size_mm
OffsetColumn
can be imported fromooodev.format.inner.common.format_types.offset_column
OffsetRow
can be imported fromooodev.format.inner.common.format_types.offset_row
Offset
can be imported fromooodev.utils.data_type.offset
- style_area_image_from_preset(preset)
Style Area Gradient from Preset.
- Parameters:
preset (PresetImageKind) – Preset Image Kind.
- Returns:
Chart Fill Image instance.
- Return type:
Hint
PresetImageKind
can be imported fromooodev.format.inner.preset.preset_image
- style_area_image_get()
Gets the Area Area Image Style.
- Raises:
CancelEventError – If the event
before_style_area_img_get
is cancelled and not handled.- Returns:
Area image style or
None
if cancelled.- Return type:
ChartFillImgT | None
- style_area_pattern(*, bitmap=None, name='', tile=True, stretch=False, auto_name=False)
Style Area Color.
- Parameters:
bitmap (XBitmap, optional) – Bitmap instance. If
name
is not already in the Bitmap Table then this property is required.name (str, optional) – Specifies the name of the pattern. This is also the name that is used to store bitmap in LibreOffice Bitmap Table.
tile (bool, optional) – Specified if bitmap is tiled. Defaults to
True
.stretch (bool, optional) – Specifies if bitmap is stretched. Defaults to
False
.auto_name (bool, optional) – Specifies if
name
is ensured to be unique. Defaults toFalse
.
- Raises:
CancelEventError – If the event
before_style_area_pattern
is cancelled and not handled.- Returns:
Fill Image instance or
None
if cancelled.- Return type:
ChartFillPatternT | None
- style_area_pattern_from_preset(preset)
Style Area Gradient from Preset.
- Parameters:
preset (PresetPatternKind) – Preset Image Kind.
- Returns:
Chart Fill Image instance.
- Return type:
Hint
PresetPatternKind
can be imported fromooodev.format.inner.preset.preset_pattern
- style_area_pattern_get()
Gets the Area Area Pattern Style.
- Raises:
CancelEventError – If the event
before_style_area_pattern_get
is cancelled and not handled.- Returns:
Area pattern style or
None
if cancelled.- Return type:
ChartFillPatternT | None
- style_area_transparency_gradient(*, style=GradientStyle.LINEAR, offset=Offset(x=50, y=50), angle=0, border=0, grad_intensity=IntensityRange(start=0, end=0))
Style Area Color.
- Parameters:
style (GradientStyle, optional) – Specifies the style of the gradient. Defaults to
GradientStyle.LINEAR
.step_count (int, optional) – Specifies the number of steps of change color. Defaults to
0
.offset (offset, optional) – Specifies the X-coordinate (start) and Y-coordinate (end), where the gradient begins. X is effectively the center of the
RADIAL
,ELLIPTICAL
,SQUARE
andRECT
style gradients. Defaults toOffset(50, 50)
.angle (Angle, int, optional) – Specifies angle of the gradient. Defaults to
0
.border (int, optional) – Specifies percent of the total width where just the start color is used. Defaults to
0
.grad_intensity (IntensityRange, optional) – Specifies the intensity at the start point and stop point of the gradient. Defaults to
IntensityRange(0, 0)
.
- Raises:
CancelEventError – If the event
before_style_area_transparency_gradient
is cancelled and not handled.- Returns:
FillColor instance or
None
if cancelled.- Return type:
GradientT | None
Hint
GradientStyle
can be imported fromooo.dyn.awt.gradient_style
IntensityRange
can be imported fromooodev.utils.data_type.intensity_range
Offset
can be imported fromooodev.utils.data_type.offset
Angle
can be imported fromooodev.units
Intensity
can be imported fromooodev.utils.data_type.intensity
- style_area_transparency_gradient_get()
Gets the Area Transparency Gradient Style.
- Raises:
CancelEventError – If the event
before_style_area_transparency_gradient_get
is cancelled and not handled.- Returns:
Area transparency style or
None
if cancelled.- Return type:
GradientT | None
- style_area_transparency_transparency(value=0)
Style Area Color.
- Parameters:
value (Intensity, int, optional) – Specifies the transparency value from
0
to100
.- Raises:
CancelEventError – If the event
before_style_area_transparency_transparency
is cancelled and not handled.- Returns:
FillColor instance or
None
if cancelled.- Return type:
TransparencyT | None
Hint
The value of
0
is fully opaque.The value of
100
is fully transparent.Intensity
can be imported fromooodev.utils.data_type.intensity
- style_area_transparency_transparency_get()
Gets the Area Transparency Style.
- Raises:
CancelEventError – If the event
before_style_area_transparency_transparency_get
is cancelled and not handled.- Returns:
Area transparency style or
None
if cancelled.- Return type:
TransparencyT | None
- style_border_line(color=0, width=0, transparency=0, style=BorderLineKind.CONTINUOUS)
Style border line.
- Parameters:
color (Color, optional) – Line Color. Defaults to
Color(0)
.width (float | UnitT, optional) – Line Width (in
mm
units) or Class UnitT. Defaults to0
.transparency (int | Intensity, optional) – Line transparency from
0
to100
. Defaults to0
.style (BorderLineKind, optional) – Line style. Defaults to
BorderLineKind.CONTINUOUS
.
- Raises:
CancelEventError – If the event
before_style_chart_border_line
is cancelled and not handled.- Returns:
Line properties style or
None
if cancelled.- Return type:
LinePropertiesT | None
Hint
BorderLineKind
can be imported fromooodev.format.inner.preset.preset_border_line
Intensity
can be imported fromooodev.utils.data_type.intensity
- style_border_line_get()
Gets the line properties style.
- Raises:
CancelEventError – If the event
before_style_chart_border_line_get
is cancelled and not handled.- Returns:
Line properties style or
None
if cancelled.- Return type:
LinePropertiesT | None
- property component: PropertySet
PropertySet Component
- Return type:
PropertySet
- property extra_data: TheDict
Extra Data Key Value Pair Dictionary.
Properties can be assigned properties and access like a dictionary and with dot notation.
Note
This is a dictionary object that can be used to store key value pairs. Generally speaking this data is not part of the object’s main data structure and is not saved with the object (document).
This property is used to store data that is not part of the object’s main data structure and can be used however the developer sees fit.
- Return type:
- property fill_background: bool
Gets/Sets whether the transparent background of a hatch filled area is drawn in the current background color.
If this is
True
, the transparent background of a hatch filled area is drawn in the current background color.- Return type:
bool
- property fill_bitmap: XBitmap | None
Gets/Sets the bitmap used for filling.
If the property
fill_style
is set toFillStyle.BITMAP
, this is the bitmap used.optional
- Return type:
XBitmap | None
- property fill_bitmap_logical_size: bool
Gets/Sets if the size is given in percentage or as an absolute value.
If this is
True
, the propertiesfill_bitmap_size_x
andfill_bitmap_size_y
contain the size of the tile in percent of the size of the original bitmap. If this isFalse
, the size of the tile is specified with1/100th mm
.- Return type:
bool
- property fill_bitmap_mode: BitmapMode
Gets/Sets how an area is filled with a single bitmap.
This enum selects how an area is filled with a single bitmap.
This property corresponds to the properties
fill_bitmap_stretch
andfill_bitmap_tile
.If set to
BitmapMode.REPEAT
, the propertyfill_bitmap_stretch
is set toFalse
, and the propertyfill_bitmap_tile
is set toTrue
.If set to
BitmapMode.STRETCH
, the propertyfill_bitmap_stretch
is set toTrue
, and the propertyfill_bitmap_tile
is set toFalse
.If set to
BitmapMode.NO_REPEAT
, both propertiesfill_bitmap_stretch
andfill_bitmap_tile
are set toFalse
.- Returns:
Bitmap Mode
- Return type:
BitmapMode
Hint
BitmapMode
can be imported fromooo.dyn.drawing.bitmap_mode
.
- property fill_bitmap_name: str
If the property FillStyle is set to
FillStyle.BITMAP
, this is the name of the used fill bitmap style.- Return type:
str
- property fill_bitmap_offset_x: int
Gets/Sets - Every second line of tiles is moved the given percent of the width of the bitmap.
- Return type:
int
- property fill_bitmap_offset_y: int
Gets/Sets - Every second row of tiles is moved the given percent of the height of the bitmap.
- Return type:
int
- property fill_bitmap_position_offset_x: int
Gets/Sets the horizontal offset where the tile starts.
It is given in percent in relation to the width of the bitmap.
- Return type:
int
- property fill_bitmap_position_offset_y: int
Gets/Sets the vertical offset where the tile starts.
It is given in percent in relation to the height of the bitmap.
- Return type:
int
- property fill_bitmap_rectangle_point: RectanglePoint
Gets/Sets - RectanglePoint specifies the position inside of the bitmap to use as the top left position for rendering.
- Returns:
RectanglePoint specifies the position inside of the bitmap to use as the top left position for rendering.
- Return type:
RectanglePoint
Hint
RectanglePoint
can be imported fromooo.dyn.drawing.rectangle_point
.
- property fill_bitmap_size_x: int
Gets/Sets the width of the tile for filling.
Depending on the property
fill_bitmap_logical_size
, this is either relative or absolute.If
fill_bitmap_logical_size
isTrue
then property contain the size of the tile in percent of the size of the original bitmap; Otherwise, the size of the tile is specified with 1/100th mm.- Return type:
int
- property fill_bitmap_size_y: int
Gets/Sets the height of the tile for filling.
This is the height of the tile for filling.
Depending on the property FillBitmapLogicalSize, this is either relative or absolute.
If
fill_bitmap_logical_size
isTrue
then property contain the size of the tile in percent of the size of the original bitmap; Otherwise, the size of the tile is specified with 1/100th mm.- Return type:
int
- property fill_bitmap_stretch: bool | None
Gets/Sets if the fill bitmap is stretched to fill the area of the shape.
This property should not be used anymore and is included here for completeness. The
fill_bitmap_mode
property can be used instead to set all supported bitmap modes.If set to
True
, the value of thefill_bitmap_mode
property changes toBitmapMode.STRETCH
. BUT: behavior is undefined, if the propertyfill_bitmap_tile
isTrue
too.If set to
False
, the value of thefill_bitmap_mode
property changes toBitmapMode.REPEAT
orBitmapMode.NO_REPEAT
, depending on the current value of thefill_bitmap_tile
property.optional
- Return type:
bool | None
- property fill_bitmap_tile: bool | None
Get/Sets the fill bitmap is repeated to fill the area of the shape.
This property should not be used anymore and is included here for completeness. The
fill_bitmap_mode
property can be used instead to set all supported bitmap modes.If set to
True
, the value of thefill_bitmap_mode
property changes toBitmapMode.REPEAT
. BUT: behavior is undefined, if the propertyfill_bitmap_stretch
isTrue
too.If set to
False
, the value of thefill_bitmap_mode
property changes toBitmapMode.STRETCH
orBitmapMode.NO_REPEAT
, depending on the current value of thefill_bitmap_stretch
property.optional
- Return type:
bool | None
- property fill_bitmap_url: str | None
Gets/Sets the URL of the bitmap used for filling.
If the property
fill_style
is set toFillStyle.BITMAP
, this is a URL to the bitmap used.Note the new behavior since it this was deprecated: This property can only be set and only external URLs are supported (no more vnd.sun.star.GraphicObject scheme). When a URL is set, then it will load the bitmap and set the
fill_bitmap
property.optional
- Return type:
str | None
- property fill_color: com.sun.star.util.Color
Gets/Sets the color used for filling.
If the property
fill_style
is set toFillStyle.SOLID
, this is the color used.- Return type:
Color
- property fill_gradient: GradientStructComp | None
Gets/Sets the gradient used for filling.
If the property
fill_style
is set toFillStyle.GRADIENT
, this describes the gradient used.Note when setting the gradient it can be a
GradientStructComp
or aGradient
struct.optional
- Returns:
Gradient Struct Component or None if not supported.
- Return type:
GradientStructComp | None
Hint
Gradient
can be imported fromooo.dyn.awt.gradient
.
- property fill_gradient_name: str
Gets/Sets the name of the used fill gradient style.
If the property
fill_style
is set toFillStyle.GRADIENT
, this is the name of the used fill gradient style.- Return type:
str
- property fill_hatch: HatchStructComp | None
Gets/Sets the hatch used for filling.
If the property
fill_style
is set toFillStyle.HATCH
, this describes the hatch used.optional
- Return type:
HatchStructComp | None
- property fill_hatch_name: str
Gets/Sets the name of the used fill hatch style.
If the property
fill_style
is set toFillStyle.HATCH
, this is the name of the used fill hatch style.- Return type:
str
- property fill_style: FillStyle
Gets/Sets the enumeration selects the style the area will be filled with.
- Returns:
Fill Style
- Return type:
FillStyle
Hint
FillStyle
can be imported fromooo.dyn.drawing.fill_style
.
- property fill_transparence: int
Gets/Sets the transparence of the filled area.
This property is only valid if the property
fill_style
is set toFillStyle.SOLID
.- Return type:
int
- property fill_transparence_gradient: GradientStructComp | None
Gets/Sets the transparency of the fill area as a gradient.
Note when setting the gradient it can be a
GradientStructComp
or aGradient
struct.optional
- Returns:
Gradient Struct Component or None if not supported.
- Return type:
GradientStructComp | None
Hint
Gradient
can be imported fromooo.dyn.awt.gradient
.
- property fill_transparence_gradient_name: str
Gets/Sets the name of the used transparence gradient style.
If a gradient is used for transparency, this is the name of the used transparence gradient style or it is empty.
If you set the name of a transparence gradient style contained in the document, this style used.
- Return type:
str
- property fill_use_slide_background: bool | None
The area displays the slide background.
since
LibreOffice 7.4
optional
- Type:
If this is
True
, andfill_style
isFillStyle.NONE
- Return type:
bool | None
- property graphic_crop: GraphicCropStructComp[UnitMM100] | None
Gets/Sets the cropping of the object.
If the property
fill_bitmap_mode
is set toBitmapMode.STRETCH
, this is the cropping, otherwise it is empty.When setting the cropping it can be a
GraphicCropStructComp
or aGraphicCrop
struct.optional
- Returns:
Graphic Crop Struct Component or None if not supported.
- Return type:
GraphicCropStructComp | None
Hint
GraphicCrop
can be imported fromooo.dyn.text.graphic_crop
.
- property line_cap: LineCap | None
Gets/Sets the rendering of ends of thick lines.
optional:
- Returns:
The line cap.
- Return type:
LineCap
Hint
LineCap
can be imported fromooo.dyn.drawing.line_cap
- property line_color: com.sun.star.util.Color
Gets/Sets the line color.
- Return type:
Color
- property line_dash: LineDashStructComp
Gets/Sets the dash of the line.
When setting the value can be a
LineDash
or aLineDashStructComp
.- Returns:
The line dash.
- Return type:
Hint
LineDash
can be imported fromooo.dyn.drawing.line_dash
- property line_dash_name: str
Gets/Sets the name of the dash of the line.
- Return type:
str
- property line_end: PolyPolygonBezierCoords | None
Gets/Sets the line end in the form of a poly polygon Bezier.
optional
- Return type:
PolyPolygonBezierCoords | None
- property line_end_center: bool | None
Gets/Sets the line end center.
If this property is
True
, the line will end in the center of the polygon.optional
- Return type:
bool | None
- property line_end_name: str | None
Gets/Sets the name of the line end poly polygon Bezier.
If this string is empty, no line end polygon is rendered.
optional
- Return type:
str | None
- property line_end_width: UnitMM100 | None
Gets/Sets the width of the line end polygon.
When setting this property, you can use either an integer or a
UnitT
object.optional
- Returns:
The width of the line end polygon or None if not available.
- Return type:
Hint
UnitMM100
can be imported fromooodev.units
.
- property line_joint: LineJoint
Gets/Sets the rendering of joints between thick lines.
- Returns:
The line joint.
- Return type:
LineJoint
Hint
LineJoint
can be imported fromooo.dyn.drawing.line_joint
- property line_start: PolyPolygonBezierCoords | None
Gets/Sets the line start in the form of a poly polygon Bezier.
optional
- Return type:
PolyPolygonBezierCoords | None
- property line_start_center: bool | None
Gets/Sets the line start center.
If this property is
True
, the line will start from the center of the polygon.optional
- Return type:
bool | None
- property line_start_name: str | None
Gets/Sets the name of the line start poly polygon Bezier.
If this string is empty, no line start polygon is rendered.
optional
- Return type:
str | None
- property line_start_width: UnitMM100 | None
Gets/Sets the width of the line start polygon.
When setting this property, you can use either an integer or a
UnitT
object.optional
- Returns:
The width of the line start polygon or None if not available.
- Return type:
Hint
UnitMM100
can be imported fromooodev.units
.
- property line_style: LineStyle
Gets/Sets the type of the line.
- Returns:
Line Style.
- Return type:
LineStyle
Hint
LineStyle
can be imported fromooo.dyn.drawing.line_style
- property line_transparence: int
Gets/Sets the extent of transparency.
- Return type:
int
- property office_doc: OfficeDocumentT
Office Document.
- Return type:
- property owner: _T
Owner of PropertySet
- Return type:
TypeVar
(_T
)