diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:14 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | c05efa8d7ae464235cf83d7c0956e42dc6974103 (patch) | |
tree | 6ea911b2f2010f63a026de6bb7a1a51e7690a7e1 /files/fr/web/api/textmetrics/width/index.html | |
parent | 13a5e017558b248ee1647d4a5825f183b51f09ad (diff) | |
download | translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.gz translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.bz2 translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/api/textmetrics/width/index.html')
-rw-r--r-- | files/fr/web/api/textmetrics/width/index.html | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/files/fr/web/api/textmetrics/width/index.html b/files/fr/web/api/textmetrics/width/index.html deleted file mode 100644 index 69436e4cb2..0000000000 --- a/files/fr/web/api/textmetrics/width/index.html +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: TextMetrics.width -slug: Web/API/TextMetrics/width -tags: - - API - - Canevas - - Propriété - - Référence(2) - - TextMetrics -translation_of: Web/API/TextMetrics/width ---- -<div>{{APIRef("Canvas API")}}</div> - -<p>La propriété en lecture seule <strong>TextMetrics.width</strong> contient en pixels CSS la largeur d'avance du texte (la largeur de la boîte de ligne).</p> - -<h2 id="Syntax">Syntaxe</h2> - -<pre class="syntaxbox"><var>readonly <em>metrics</em></var>.width;</pre> - -<h2 id="Exemples">Exemples</h2> - -<p>Étant donné cet élément {{HTMLElement("canvas")}} :</p> - -<pre class="brush: html"><canvas id="canevas"></canvas> -</pre> - -<p>vous pouvez obtenir un objet {{domxref("TextMetrics")}} en utilisant le code suivant :</p> - -<pre class="brush: js">var canvas = document.getElementById("canevas"); -var ctx = canvas.getContext("2d"); - -var texte = ctx.measureText("foo"); // objet TextMetrics -texte.width; // 16; -</pre> - -<h2 id="Spécifications">Spécifications</h2> - -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">Spécification</th> - <th scope="col">Statut</th> - <th scope="col">Commentaire</th> - </tr> - <tr> - <td>{{SpecName('HTML WHATWG', "scripting.html#dom-textmetrics-width", "TextMetrics.width")}}</td> - <td>{{Spec2('HTML WHATWG')}}</td> - <td> </td> - </tr> - </tbody> -</table> - -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> - -<p>{{Compat("api.TextMetrics.width")}}</p> - -<h2 id="Voir_aussi">Voir aussi</h2> - -<ul> - <li>{{domxref("TextMetrics")}}</li> -</ul> |