updateEditorContainer Method
In This Topic
Updates the cell wrapper element size.
Syntax
var instance = new GC.Spread.Sheets.CellTypes.Base();
var value; // Type: any
value = instance.updateEditorContainer(editorContext,
editorBounds,
editorBounds.x,
editorBounds.y,
editorBounds.width,
editorBounds.height,
cellStyle);
function updateEditorContainer(
: object,
: object,
: number,
: number,
: number,
: number,
: Style
) : any;
Parameters
- editorContext
- The DOM element that was created by the createEditorElement method.
- editorBounds
- The cell wrapper element's new size.
- editorBounds.x
- The cell wrapper element's x position.
- editorBounds.y
- The cell wrapper element's y position.
- editorBounds.width
- The cell wrapper element's new width value.
- editorBounds.height
- The cell wrapper element's new height value.
- cellStyle
- The cell's actual style.
See Also