How to set LayerProp "Frame Linewidth"?

Maybe I am just not seeing it, but I would like to set a layer's frame line width higher than the default, with ruby.
Can someone tell me how to access that ?

def set_layer_allprop(ls, li, stipple, style, color)    
    view = RBA::LayoutView::current
    view.add_missing_layers
    numLayers = 0
    i = view.begin_layers
    while !i.at_end?
        if i.current.source_name==ls.name
            i.current.dither_pattern=stipple
            i.current.fill_color=color
            i.current.frame_color=color
            i.current.line_style=style
        end
        numLayers = numLayers + 1
        i.next
    end
end

Comments

Sign In or Register to comment.