Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:html
  3. Node
  4. nodes property
nodes
description

nodes property

List<Node> getnodes

A modifiable list of this node's children.

Implementation

List<Node> get nodes {  return new _ChildNodeListLazy(this);}
setnodes(Iterable<Node>value)

Implementation

set nodes(Iterable<Node> value) {  // Copy list first since we don't want liveness during iteration.  // TODO(jacobr): there is a better way to do this.  var copy = value.toList();  text = '';  for (Node node in copy) {    append(node);  }}
  1. Dart
  2. dart:html
  3. Node
  4. nodes property
Node class

[8]ページ先頭

©2009-2025 Movatter.jp