aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/api/event/ischar
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:52 -0500
commit074785cea106179cb3305637055ab0a009ca74f2 (patch)
treee6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/pl/web/api/event/ischar
parentda78a9e329e272dedb2400b79a3bdeebff387d47 (diff)
downloadtranslated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz
translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2
translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip
initial commit
Diffstat (limited to 'files/pl/web/api/event/ischar')
-rw-r--r--files/pl/web/api/event/ischar/index.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/files/pl/web/api/event/ischar/index.html b/files/pl/web/api/event/ischar/index.html
new file mode 100644
index 0000000000..fc7a7dfec9
--- /dev/null
+++ b/files/pl/web/api/event/ischar/index.html
@@ -0,0 +1,24 @@
+---
+title: event.isChar
+slug: Web/API/Event/isChar
+tags:
+ - DOM
+ - Wszystkie_kategorie
+translation_of: Web/API/UIEvent/isChar
+---
+<p>{{ ApiRef() }}</p>
+<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3>
+<p>Zwraca wartość logiczną oznaczającą, czy w zdarzeniu pojawił się klawisz znaku czy nie.</p>
+<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3>
+<pre class="eval">bool = event.isChar
+</pre>
+<h3 id="Example" name="Example">Example</h3>
+<pre> if e.isChar
+ echoInput(e.type);
+ }
+</pre>
+<h3 id="Notes" name="Notes">Notes</h3>
+<p>Niektórze kombinacje klawiszy mogą wywyoływać zdarzenia bez wystąpienia znaku (np. ctrl + alt). Wtedy <b>isChar</b> zwraca fałsz. <b>isChar</b> może być użyty, kiedy funkcje obsługujące zdarzenie potrzebują np. wyświetlić wprowadzony znak na ekranie.</p>
+<h3 id="Specyfikacja" name="Specyfikacja">Specyfikacja</h3>
+<p>Nie należy do specyfikacji.</p>
+<p>{{ languages( { "en": "en/DOM/event.isChar" } ) }}</p>