Interface ShouldDisableCanvasCustomizer
public interface ShouldDisableCanvasCustomizer
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Called to determine whether thecanvas
should bedisabled
when theCanvasItem
is disabled or itseditability changes
.
-
Method Details
-
shouldDisableCanvas
boolean shouldDisableCanvas()Called to determine whether thecanvas
should bedisabled
when theCanvasItem
is disabled or itseditability changes
. By default, if thecanvas
is aDynamicForm
, then it is disabled if and only if theCanvasItem
is disabled; otherwise, thecanvas
is disabled if and only if theCanvasItem
is disabled orread-only
.- Returns:
true
if thecanvas
should be disabled;false
otherwise.
-