getStyles
Description
지정한 영역의 스타일 정보를 가져온다.
Syntax
function getStyles(region, all)
Parameters
region
Type: string
영역 이름
all
Type: boolean
true면 계승된 스타일 값까지 포함한다.
Return value
Type: object
스타일 데이터.
Examples
var styles = grid.getStyles("header", true); if (styles) { alert(JSON.stringify(styles)); }