SpreadJS製品ヘルプ
onUpdate メソッド
GC.Spread.Sheets.StatusBar 名前空間 > StatusItem タイプ : onUpdate メソッド
ステータスバーの更新用のコールバック。ステータスバーが関数を連結または更新するとき、またはコンテキストメニューでステータスバーが変更されたかを確認しえうときに呼び出されます。 更新関連の操作は、その中で実現できます。 また、ユーザーは、現在の項目を更新する必要がある場合にonUpdateを呼び出す必要があります。 superのデフォルトの操作は、表示によって現在の項目を更新することです。
シンタックス
var instance = new GC.Spread.Sheets.StatusBar.StatusItem(name,
                                                        options,
                                                        options.menuContent,
                                                        options.align,
                                                        options.tipText,
                                                        options.visible,
                                                        options.showStatusInContexMenu,
                                                        options.value);
var value; // Type: any
value = instance.onUpdate();
function onUpdate() : any;
使用例
let StatusItem = GC.Spread.Sheets.StatusBar.StatusItem;
function LabelItem (name, options) {
  StatusItem.call(this, name, options);
}
LabelItem.prototype = new StatusItem();
LabelItem.prototype.onUpdate = function () {
  StatusItem.prototype.onUpdate.call(this);
  // 項目を更新します。
関連トピック

参照

StatusItem タイプ