font QML Basic Type

A font type has the properties of a QFont .

A font type has the properties of a QFont . The properties are:

  • string font.family
  • bool font.bold
  • bool font.italic
  • bool font.underline
  • real font.pointSize
  • int font.pixelSize

范例:

Text { font.family: "Helvetica"; font.pointSize: 13; font.bold: true }
					

另请参阅 QML 基本类型 .