mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-21 11:51:51 +00:00
Document text accessors
This commit is contained in:
parent
3de36bd561
commit
40e27b7392
5 changed files with 442 additions and 10 deletions
150
dist/all.js
vendored
150
dist/all.js
vendored
|
|
@ -17082,7 +17082,6 @@ fabric.Image.filters.BaseFilter = fabric.util.createClass(/** @lends fabric.Imag
|
|||
'fontFamily',
|
||||
'fontWeight',
|
||||
'fontSize',
|
||||
'path',
|
||||
'text',
|
||||
'textDecoration',
|
||||
'textAlign',
|
||||
|
|
@ -17090,7 +17089,8 @@ fabric.Image.filters.BaseFilter = fabric.util.createClass(/** @lends fabric.Imag
|
|||
'lineHeight',
|
||||
'backgroundColor',
|
||||
'textBackgroundColor',
|
||||
'useNative'
|
||||
'useNative',
|
||||
'path'
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
@ -17118,6 +17118,150 @@ fabric.Image.filters.BaseFilter = fabric.util.createClass(/** @lends fabric.Imag
|
|||
text: true
|
||||
},
|
||||
|
||||
/**
|
||||
* Retrieves object's fontSize
|
||||
* @method getFontSize
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Font size (in pixels)
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontSize
|
||||
* @method setFontSize
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {Number} fontSize Font size (in pixels)
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's fontWeight
|
||||
* @method getFontWeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {(String|Number)} Font weight
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontWeight
|
||||
* @method setFontWeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {(Number|String)} fontWeight Font weight
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's fontFamily
|
||||
* @method getFontFamily
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Font family
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontFamily
|
||||
* @method setFontFamily
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} fontFamily Font family
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's text
|
||||
* @method getText
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} text
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's text
|
||||
* @method setText
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} text Text
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's textDecoration
|
||||
* @method getTextDecoration
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Text decoration
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's textDecoration
|
||||
* @method setTextDecoration
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} textDecoration Text decoration
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's fontStyle
|
||||
* @method getFontStyle
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Font style
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontStyle
|
||||
* @method setFontStyle
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} fontStyle Font style
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's lineHeight
|
||||
* @method getLineHeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {Number} Line height
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's lineHeight
|
||||
* @method setLineHeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {Number} lineHeight Line height
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's textAlign
|
||||
* @method getTextAlign
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Text alignment
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's textAlign
|
||||
* @method setTextAlign
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} textAlign Text alignment
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's textBackgroundColor
|
||||
* @method getTextBackgroundColor
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Text background color
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's textBackgroundColor
|
||||
* @method setTextBackgroundColor
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} textBackgroundColor Text background color
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Type of an object
|
||||
* @type String
|
||||
|
|
@ -17134,7 +17278,7 @@ fabric.Image.filters.BaseFilter = fabric.util.createClass(/** @lends fabric.Imag
|
|||
|
||||
/**
|
||||
* Font weight (e.g. bold, normal, 400, 600, 800)
|
||||
* @type Number
|
||||
* @type {(Number|String)}
|
||||
* @default
|
||||
*/
|
||||
fontWeight: 'normal',
|
||||
|
|
|
|||
2
dist/all.min.js
vendored
2
dist/all.min.js
vendored
File diff suppressed because one or more lines are too long
BIN
dist/all.min.js.gz
vendored
BIN
dist/all.min.js.gz
vendored
Binary file not shown.
150
dist/all.require.js
vendored
150
dist/all.require.js
vendored
|
|
@ -17082,7 +17082,6 @@ fabric.Image.filters.BaseFilter = fabric.util.createClass(/** @lends fabric.Imag
|
|||
'fontFamily',
|
||||
'fontWeight',
|
||||
'fontSize',
|
||||
'path',
|
||||
'text',
|
||||
'textDecoration',
|
||||
'textAlign',
|
||||
|
|
@ -17090,7 +17089,8 @@ fabric.Image.filters.BaseFilter = fabric.util.createClass(/** @lends fabric.Imag
|
|||
'lineHeight',
|
||||
'backgroundColor',
|
||||
'textBackgroundColor',
|
||||
'useNative'
|
||||
'useNative',
|
||||
'path'
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
@ -17118,6 +17118,150 @@ fabric.Image.filters.BaseFilter = fabric.util.createClass(/** @lends fabric.Imag
|
|||
text: true
|
||||
},
|
||||
|
||||
/**
|
||||
* Retrieves object's fontSize
|
||||
* @method getFontSize
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Font size (in pixels)
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontSize
|
||||
* @method setFontSize
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {Number} fontSize Font size (in pixels)
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's fontWeight
|
||||
* @method getFontWeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {(String|Number)} Font weight
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontWeight
|
||||
* @method setFontWeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {(Number|String)} fontWeight Font weight
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's fontFamily
|
||||
* @method getFontFamily
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Font family
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontFamily
|
||||
* @method setFontFamily
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} fontFamily Font family
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's text
|
||||
* @method getText
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} text
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's text
|
||||
* @method setText
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} text Text
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's textDecoration
|
||||
* @method getTextDecoration
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Text decoration
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's textDecoration
|
||||
* @method setTextDecoration
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} textDecoration Text decoration
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's fontStyle
|
||||
* @method getFontStyle
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Font style
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontStyle
|
||||
* @method setFontStyle
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} fontStyle Font style
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's lineHeight
|
||||
* @method getLineHeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {Number} Line height
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's lineHeight
|
||||
* @method setLineHeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {Number} lineHeight Line height
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's textAlign
|
||||
* @method getTextAlign
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Text alignment
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's textAlign
|
||||
* @method setTextAlign
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} textAlign Text alignment
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's textBackgroundColor
|
||||
* @method getTextBackgroundColor
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Text background color
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's textBackgroundColor
|
||||
* @method setTextBackgroundColor
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} textBackgroundColor Text background color
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Type of an object
|
||||
* @type String
|
||||
|
|
@ -17134,7 +17278,7 @@ fabric.Image.filters.BaseFilter = fabric.util.createClass(/** @lends fabric.Imag
|
|||
|
||||
/**
|
||||
* Font weight (e.g. bold, normal, 400, 600, 800)
|
||||
* @type Number
|
||||
* @type {(Number|String)}
|
||||
* @default
|
||||
*/
|
||||
fontWeight: 'normal',
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
'fontFamily',
|
||||
'fontWeight',
|
||||
'fontSize',
|
||||
'path',
|
||||
'text',
|
||||
'textDecoration',
|
||||
'textAlign',
|
||||
|
|
@ -26,7 +25,8 @@
|
|||
'lineHeight',
|
||||
'backgroundColor',
|
||||
'textBackgroundColor',
|
||||
'useNative'
|
||||
'useNative',
|
||||
'path'
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
@ -54,6 +54,150 @@
|
|||
text: true
|
||||
},
|
||||
|
||||
/**
|
||||
* Retrieves object's fontSize
|
||||
* @method getFontSize
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Font size (in pixels)
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontSize
|
||||
* @method setFontSize
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {Number} fontSize Font size (in pixels)
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's fontWeight
|
||||
* @method getFontWeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {(String|Number)} Font weight
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontWeight
|
||||
* @method setFontWeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {(Number|String)} fontWeight Font weight
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's fontFamily
|
||||
* @method getFontFamily
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Font family
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontFamily
|
||||
* @method setFontFamily
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} fontFamily Font family
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's text
|
||||
* @method getText
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} text
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's text
|
||||
* @method setText
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} text Text
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's textDecoration
|
||||
* @method getTextDecoration
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Text decoration
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's textDecoration
|
||||
* @method setTextDecoration
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} textDecoration Text decoration
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's fontStyle
|
||||
* @method getFontStyle
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Font style
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's fontStyle
|
||||
* @method setFontStyle
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} fontStyle Font style
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's lineHeight
|
||||
* @method getLineHeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {Number} Line height
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's lineHeight
|
||||
* @method setLineHeight
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {Number} lineHeight Line height
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's textAlign
|
||||
* @method getTextAlign
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Text alignment
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's textAlign
|
||||
* @method setTextAlign
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} textAlign Text alignment
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves object's textBackgroundColor
|
||||
* @method getTextBackgroundColor
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @return {String} Text background color
|
||||
*/
|
||||
|
||||
/**
|
||||
* Sets object's textBackgroundColor
|
||||
* @method setTextBackgroundColor
|
||||
* @memberOf fabric.Text.prototype
|
||||
* @param {String} textBackgroundColor Text background color
|
||||
* @return {fabric.Text}
|
||||
* @chainable
|
||||
*/
|
||||
|
||||
/**
|
||||
* Type of an object
|
||||
* @type String
|
||||
|
|
@ -70,7 +214,7 @@
|
|||
|
||||
/**
|
||||
* Font weight (e.g. bold, normal, 400, 600, 800)
|
||||
* @type Number
|
||||
* @type {(Number|String)}
|
||||
* @default
|
||||
*/
|
||||
fontWeight: 'normal',
|
||||
|
|
|
|||
Loading…
Reference in a new issue