SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.beginUpdate  method

グリッドのプロパティーの変更の時endUpdateが呼び出されるまでは描画の再要請をしない。 

function beginUpdate ();
Returns
Void
Code -1
    grid.beginUpdate();
    try {
        //この二つの関数はグリッドの内容を変更する大抵のプロパティーや関数で呼び出される。
        grid.invalidate();
        grid.invalidateLayout();
    } finally {
        grid.endUpdate();
    }    
See Also
endUpdate
refreshView