SMART datagrid v.1 > Classes > GridStyles

Back  Forward

DataLudi.GridStyles.shapeInactiveBorder  property

セルに表示されるshapeが日活性化状態である時、境界線を描画する時に使われるStroke客体。 

Shapeはcanvasやsvg apiを利用して描画される。 下のサンプルのように色々な方法で指定することができる。 

Getter
function shapeInactiveBorder(): Stroke
Setter
function setShapeInactiveBorder(value: String|Stroke)
Code -1
    column.styles().setShapeInactiveBorder('#30000000,1');
    // nullで指定すれば境界線を描画しない。
    column.styles().setShapeInactiveBorder(null);
    // 既存の設定値を除去して上位のstyles目録で受け継ぐようにする。
    column.styles().clearValue('shapeInactiveBorder');
See Also
shapeInactiveColor
shapeBorder
Stroke
色の設定
Gridスタイル概要
Examples
Shape Cell Renderer
Column Styles