summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/doc_src_examples_qtscriptcustomclass.qdoc
diff options
context:
space:
mode:
authorAlexis Menard <alexis.menard@nokia.com>2009-04-17 14:06:06 (GMT)
committerAlexis Menard <alexis.menard@nokia.com>2009-04-17 14:06:06 (GMT)
commitf15b8a83e2e51955776a3f07cb85ebfc342dd8ef (patch)
treec5dc684986051654898db11ce73e03b9fec8db99 /doc/src/snippets/code/doc_src_examples_qtscriptcustomclass.qdoc
downloadQt-f15b8a83e2e51955776a3f07cb85ebfc342dd8ef.zip
Qt-f15b8a83e2e51955776a3f07cb85ebfc342dd8ef.tar.gz
Qt-f15b8a83e2e51955776a3f07cb85ebfc342dd8ef.tar.bz2
Initial import of statemachine branch from the old kinetic repository
Diffstat (limited to 'doc/src/snippets/code/doc_src_examples_qtscriptcustomclass.qdoc')
-rw-r--r--doc/src/snippets/code/doc_src_examples_qtscriptcustomclass.qdoc35
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/src/snippets/code/doc_src_examples_qtscriptcustomclass.qdoc b/doc/src/snippets/code/doc_src_examples_qtscriptcustomclass.qdoc
new file mode 100644
index 0000000..f958cc9
--- /dev/null
+++ b/doc/src/snippets/code/doc_src_examples_qtscriptcustomclass.qdoc
@@ -0,0 +1,35 @@
+//! [0]
+var ba = new ByteArray(); // constructs an empty ByteArray
+var ba2 = new ByteArray(10); // constructs a ByteArray of length 10 (all bytes initialized to 0)
+//! [0]
+
+
+//! [1]
+for (var i = 0; i < ba.length; ++i)
+ ba[i] = 123;
+//! [1]
+
+
+//! [2]
+ba[0] = 257;
+print(ba[0]); // 1
+//! [2]
+
+
+//! [3]
+var ba3 = new ByteArray();
+print(ba3.length); // 0
+ba[0] = 64;
+print(ba3.length); // 1
+//! [3]
+
+
+//! [4]
+ba["foo"] = "Hello";
+//! [4]
+
+
+//! [5]
+var ba64 = ba.toBase64();
+print(ba64.toLatin1String());
+//! [5]