aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/svgstringlist
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/svgstringlist
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/svgstringlist')
-rw-r--r--files/ja/web/api/svgstringlist/index.html196
1 files changed, 196 insertions, 0 deletions
diff --git a/files/ja/web/api/svgstringlist/index.html b/files/ja/web/api/svgstringlist/index.html
new file mode 100644
index 0000000000..e296aa2c29
--- /dev/null
+++ b/files/ja/web/api/svgstringlist/index.html
@@ -0,0 +1,196 @@
+---
+title: SVGStringList
+slug: Web/API/SVGStringList
+tags:
+ - API
+ - Reference
+ - SVG
+ - SVG DOM
+translation_of: Web/API/SVGStringList
+---
+<div>{{APIRef("SVG")}}</div>
+
+<h2 id="SVG_string_list_interface" name="SVG_string_list_interface">SVGStringList インターフェイス</h2>
+
+<p><code>SVGStringList</code> は {{domxref("DOMString")}} オブジェクトのリストを定義します。</p>
+
+<p><code>SVGStringList</code> オブジェクトは読み取り専用に設計できます。まりオブジェクトを編集しようとすると例外が投げられることになります。</p>
+
+<h3 id="Interface_overview" name="Interface_overview">インターフェイスの概要</h3>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="row">Also implement</th>
+ <td><em>なし</em></td>
+ </tr>
+ <tr>
+ <th scope="row">メソッド</th>
+ <td>
+ <ul>
+ <li><code>void clear()</code></li>
+ <li>{{domxref("DOMString")}} <code>initialize(in {{domxref("DOMString")}} <em>newItem</em>)</code></li>
+ <li>{{domxref("DOMString")}} <code>getItem(in unsigned long <em>index</em>)</code></li>
+ <li>{{domxref("DOMString")}} <code>insertItemBefore(in {{domxref("DOMString")}} <em>newItem</em>, in unsigned long <em>index</em>)</code></li>
+ <li>{{domxref("DOMString")}} <code>replaceItem(in {{domxref("DOMString")}} <em>newItem</em>, in unsigned long <em>index</em>)</code></li>
+ <li>{{domxref("DOMString")}} <code>removeItem(in unsigned long <em>index</em>)</code></li>
+ <li>{{domxref("DOMString")}} <code>appendItem(in {{domxref("DOMString")}} <em>newItem</em>)</code></li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <th scope="row">属性</th>
+ <td>
+ <ul>
+ <li>readonly unsigned long <code>numberOfItems</code></li>
+ <li>readonly unsigned long <code>length</code> {{non-standard_inline}}</li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <th scope="row">Normative document</th>
+ <td><a class="external" href="http://www.w3.org/TR/SVG11/types.html#InterfaceSVGStringList">SVG 1.1 (2nd Edition)</a></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Properties" name="Properties">属性</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th>名前</th>
+ <th>型</th>
+ <th>説明</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><code>numberOfItems</code></td>
+ <td><code>unsigned long</code></td>
+ <td>リスト内の項目の数</td>
+ </tr>
+ <tr>
+ <td><code>length</code></td>
+ <td><code>unsigned long</code></td>
+ <td><code>numberOfItems</code> のミラー値で、他のインターフェイスの整合性用。{{non-standard_inline}}</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Methods" name="Methods">メソッド</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th>名前と引数</th>
+ <th>戻り値</th>
+ <th>説明</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><code><strong>clear</strong>()</code></td>
+ <td><em>void</em></td>
+ <td>
+ <p>リストから現在の既存アイテムをクリアーし、その結果空のリストになります。</p>
+
+ <p><strong>Exceptions:</strong></p>
+
+ <ul>
+ <li>a {{domxref("DOMException")}} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when the list corresponds to a read only attribute or when the object itself is read only.</li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <td><code><strong>initialize</strong>(in {{domxref("DOMString")}} <em>newItem</em>)</code></td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>
+ <p>リストから現在の既存アイテムをクリアーしてパラメーターで指定された単一項目を保持するように初期化します。挿入した項目が既にある場合は、直前のリストから削除された後に挿入されます。挿入した項目は項目自体であってコピーではありません。戻り値はリストに挿入された項目です。</p>
+
+ <p><strong>Exceptions:</strong></p>
+
+ <ul>
+ <li>a {{domxref("DOMException")}} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when the list corresponds to a read only attribute or when the object itself is read only.</li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <td><code><strong>getItem</strong>(in unsigned long <em>index</em>)</code></td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>
+ <p>リスト内の指定した項目を返します。戻り値は項目自体であってコピーではありません。戻り値はリストに挿入された項目です。項目になされた変更は即座にリストに反映されます。最初の項目は数字のゼロです。</p>
+
+ <p><strong>Exceptions:</strong></p>
+
+ <ul>
+ <li>a {{domxref("DOMException")}} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when the list corresponds to a read only attribute or when the object itself is read only.</li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <td><code><strong>insertItemBefore</strong>(in {{domxref("DOMString")}} <em>newItem</em>, in unsigned long <em>index</em>)</code></td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>
+ <p>リストの指定した位置に新しい項目を挿入します。最初の項目は数字の 0 です。<code>newItem</code> がリスト中にすでに存在する場合、リストに挿入される前に以前のリストから削除されます。挿入される項目は項目自身でコピーではありません。注意点としてその前に挿入するという index は項目を削除する前の時点です。<code>index</code> が 0 と等しい場合、新項目はリストの前に挿入されます。index が <code>numberOfItems</code> 以上の場合、新項目はリストの後に挿入されます。</p>
+
+ <p><strong>Exceptions:</strong></p>
+
+ <ul>
+ <li>a {{domxref("DOMException")}} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when the list corresponds to a read only attribute or when the object itself is read only.</li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <td><code><strong>replaceItem</strong>(in {{domxref("DOMString")}} <em>newItem</em>, in unsigned long <em>index</em>)</code></td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>
+ <p>リスト内の項目を新項目に置き換えます。<code>newItem</code> がリスト内にすでに存在する場合、リストに挿入される前に以前のリストから削除されます。挿入される項目は項目自身でコピーではありません。項目がリストにすでに存在する場合、注意点として置換する項目の index は項目を削除する前の時点です。</p>
+
+ <p><strong>Exceptions:</strong></p>
+
+ <ul>
+ <li>a {{domxref("DOMException")}} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when the list corresponds to a read only attribute or when the object itself is read only.</li>
+ <li>a {{domxref("DOMException")}} with code <code>INDEX_SIZE_ERR</code> is raised if the index number is greater than or equal to <code>numberOfItems</code>.</li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <td><code><strong>removeItem</strong>(in unsigned long <em>index</em>)</code></td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>
+ <p>リストから既存項目を削除します。</p>
+
+ <p><strong>Exceptions:</strong></p>
+
+ <ul>
+ <li>a {{domxref("DOMException")}} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when the list corresponds to a read only attribute or when the object itself is read only.</li>
+ <li>a {{domxref("DOMException")}} with code <code>INDEX_SIZE_ERR</code> is raised if the index number is greater than or equal to <code>numberOfItems</code>.</li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <td><code><strong>appendItem</strong>(in {{domxref("DOMString")}} <em>newItem</em>)</code></td>
+ <td>{{domxref("DOMString")}}</td>
+ <td>
+ <p>リストの最後に新項目を挿入します。<code>newItem</code> がリスト内にすでに存在する場合、リストに挿入される前に以前のリストから削除されます。挿入される項目は項目自身でコピーではありません。</p>
+
+ <p><strong>Exceptions:</strong></p>
+
+ <ul>
+ <li>a {{domxref("DOMException")}} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when the list corresponds to a read only attribute or when the object itself is read only.</li>
+ </ul>
+ </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
+
+<div class="hidden">
+<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
+</div>
+
+<p>{{Compat("api.SVGStringList")}}</p>
+
+<p> </p>