Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxSpreadSheetContainerRestriction Enum

Enumerates the restrictions that can be imposed on end-user interactions with floating container objects.

#Declaration

Delphi
TdxSpreadSheetContainerRestriction = (
    crNoCrop,
    crNoMove,
    crNoResize,
    crNoRotation,
    crNoChangeAspectUsingCornerHandles
);

#Members

Name
crNoCrop
crNoMove
crNoResize
crNoRotation
crNoChangeAspectUsingCornerHandles

#Remarks

Options include:

Value Description
crNoCrop The current ExpressSpreadSheet control implementation does not use this flag.
crNoMove If this flag is set, an end-user is unable to move the container by using the keyboard or mouse.
crNoResize If this flag is set, an end-user is unable to change the container’s size by using the keyboard or mouse. Additionally, the focused container does not display its sizing handles.
crNoRotation If this flag is set, an end-user is unable to change the container’s rotation angle. Additionally, the focused container does not display its rotation handle.
crNoChangeAspectUsingCornerHandles If this flag is set, an end-user is unable to change the container’s aspect ratio by using the sizing handles located at the top-left, top-right, bottom-left, and bottom-right corners of the bounding rectangle. This flag, however, does not forbid end-users to change the container’s aspect ratio by dragging the sizing handles located at the left, top, right, and bottom container’s boundaries.

This type is referenced by the TdxSpreadSheetContainerRestrictions type.

See Also