X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/api/Ext.util.TextMetrics.html?ds=sidebyside diff --git a/docs/api/Ext.util.TextMetrics.html b/docs/api/Ext.util.TextMetrics.html deleted file mode 100644 index 93252833..00000000 --- a/docs/api/Ext.util.TextMetrics.html +++ /dev/null @@ -1,112 +0,0 @@ -Ext.util.TextMetrics | Ext JS 4.0 Documentation -
For up to date documentation and features, visit -http://docs.sencha.com/ext-js/4-0

Sencha Documentation

- - - - - -

-Provides precise pixel measurements for blocks of text so that you can determine exactly how high and -wide, in pixels, a given block of text will be. Note that when measuring text, it should be plain text and -should not contain any HTML, otherwise it may not be measured correctly.

- - -

- -

The measurement works by copying the relevant CSS styles that can affect the font related display, -then checking the size of an element that is auto-sized. Note that if the text is multi-lined, you must -provide a fixed width when doing the measurement.

- - - - -

-If multiple measurements are being done on the same element, you create a new instance to initialize -to avoid the overhead of copying the styles to the element repeatedly. -

- -
Defined By

Methods

 
TextMetrics( -Mixed bindTo, Number fixedWidth) - : void

 

-

Parameters

  • bindTo : Mixed

    The element to bind to.

    -
  • fixedWidth : Number

    A fixed width to apply to the measuring element.

    -

Returns

  • void    -
 

Binds this TextMetrics instance to a new element

-

Binds this TextMetrics instance to a new element

-

Parameters

  • el : Mixed

    The element

    -

Returns

  • void    -
 

Destroy this instance

-

Destroy this instance

-

Returns

  • void    -
 

Returns the measured height of the specified text

-

Returns the measured height of the specified text

-

Parameters

  • text : String

    The text to measure

    -

Returns

  • Number   

    height The height in pixels

    -
 
getSize( -String text) - : Object
Only available on the instance returned from createInstance, not on the singleton. - - -Returns the size of the specifie...

Only available on the instance returned from createInstance, not on the singleton.

- - -

Returns the size of the specified text based on the internal element's style and width properties

-

Parameters

  • text : String

    The text to measure

    -

Returns

  • Object   

    An object containing the text's size {width: (width), height: (height)}

    -
 
getWidth( -String text) - : Number

Returns the measured width of the specified text

-

Returns the measured width of the specified text

-

Parameters

  • text : String

    The text to measure

    -

Returns

  • Number   

    width The width in pixels

    -
 
measure( -String/HTMLElement el, String text, [Number fixedWidth]) - : Object

Measures the size of the specified text

-

Measures the size of the specified text

-

Parameters

  • el : String/HTMLElement

    The element, dom node or id from which to copy existing CSS styles -that can affect the size of the rendered text

    -
  • text : String

    The text to measure

    -
  • fixedWidth : Number

    (optional) If the text will be multiline, you have to set a fixed width -in order to accurately measure the text height

    -

Returns

  • Object   

    An object containing the text's size {width: (width), height: (height)}

    -
 
Sets a fixed width on the internal measurement element. If the text will be multiline, you have -to set a fixed width...

Sets a fixed width on the internal measurement element. If the text will be multiline, you have -to set a fixed width in order to accurately measure the text height.

-

Parameters

  • width : Number

    The width to set on the element

    -

Returns

  • void    -
\ No newline at end of file