App:Library:LVGL:docs:Overview:Style properties

提供: robot-jp wiki
2022年6月30日 (木) 22:30時点におけるTakashi (トーク | 投稿記録)による版
ナビゲーションに移動検索に移動

https://docs.lvgl.io/8.2/overview/style.html

Style properties

Size and position

英文 自動翻訳

Properties related to size, position, alignment and layout of the objects.

戻る : Previous


width

英文 自動翻訳

Sets the width of object. Pixel, percentage and LV_SIZE_CONTENT values can be used. Percentage values are relative to the width of the parent's content area.

  • Default Widget dependent
  • Inherited No
  • Layout Yes
  • Ext. draw No
戻る : Previous


min_width

英文 自動翻訳

Sets a minimal width. Pixel and percentage values can be used. Percentage values are relative to the width of the parent's content area.



  • Default 0
  • Inherited No
  • Layout Yes
  • Ext. draw No
戻る : Previous


max_width

英文 自動翻訳

Sets a maximal width. Pixel and percentage values can be used. Percentage values are relative to the width of the parent's content area.



  • Default LV_COORD_MAX
  • Inherited No
  • Layout Yes
  • Ext. draw No
戻る : Previous


height

英文 自動翻訳

Sets the height of object. Pixel, percentage and LV_SIZE_CONTENT can be used. Percentage values are relative to the height of the parent's content area.

  • Default Widget dependent
  • Inherited No
  • Layout Yes
  • Ext. draw No
戻る : Previous


min_height

英文 自動翻訳

Sets a minimal height. Pixel and percentage values can be used. Percentage values are relative to the width of the parent's content area.

  • Default 0
  • Inherited No
  • Layout Yes
  • Ext. draw No
戻る : Previous


max_height

英文 自動翻訳

Sets a maximal height. Pixel and percentage values can be used. Percentage values are relative to the height of the parent's content area.

  • Default LV_COORD_MAX
  • Inherited No
  • Layout Yes
  • Ext. draw No
戻る : Previous


x

英文 自動翻訳

Set the X coordinate of the object considering the set align. Pixel and percentage values can be used. Percentage values are relative to the width of the parent's content area.

  • Default 0
  • Inherited No
  • Layout Yes
  • Ext. draw No
戻る : Previous


y

英文 自動翻訳

Set the Y coordinate of the object considering the set align. Pixel and percentage values can be used. Percentage values are relative to the height of the parent's content area.

  • Default 0
  • Inherited No
  • Layout Yes
  • Ext. draw No
戻る : Previous


align

英文 自動翻訳

Set the alignment which tells from which point of the parent the X and Y coordinates should be interpreted. The possible values are: LV_ALIGN_DEFAULT, LV_ALIGN_TOP_LEFT/MID/RIGHT, LV_ALIGN_BOTTOM_LEFT/MID/RIGHT, LV_ALIGN_LEFT/RIGHT_MID, LV_ALIGN_CENTER. LV_ALIGN_DEFAULT means LV_ALIGN_TOP_LEFT with LTR base direction and LV_ALIGN_TOP_RIGHT with RTL base direction.

  • Default `LV_ALIGN_DEFAULT`
  • Inherited No
  • Layout Yes
  • Ext. draw No


戻る : Previous