setValue method

void setValue(
  1. Set<int> v
)

(en) Sets the value. Disabled if the manager class is not set.

(ja) 値を設定します。マネージャークラスが未設定の場合は無効です。

  • v : value.

Implementation

void setValue(Set<int> v) {
  if (elParams.p.manager != null) {
    final String? sid = getSID();
    if (sid != null) {
      elParams.p.manager!.setIndexSet(sid, v);
    }
  }
}