Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Making a button or a some visual indiciator to show that canvas can be drag resized

    Just wondering if there's an easy way to create a dragResize visual indicator on a canvas or layout. Something similar to window.setShowFooter(true).

    I can of course layout.addMember(<some thin line with indicator>) but that won't be clickable, dragresize is only active when mouse is over the edge of the layout/canvas.

    Thanks.

    #2
    Again, answered my own question. For anyone who is looking for the answer.

    layout.setShowResizeBar(true);
    layout.setResizeFrom(EdgeName.B...);

    Comment

    Working...
    X