Back to Devexpress

TdxOcImageAlign Enum

vcl-dxorgchr-82699685.md

latest3.8 KB
Original Source

TdxOcImageAlign Enum

Enumerates available node image alignment options.

Declaration

delphi
TdxOcImageAlign = (
    iaNone,
    iaLT,
    iaLC,
    iaLB,
    iaRT,
    iaRC,
    iaRB,
    iaTL,
    iaTC,
    iaTR,
    iaBL,
    iaBC,
    iaBR
);

Members

Name
iaNone
iaLT
iaLC
iaLB
iaRT
iaRC
iaRB
iaTL
iaTC
iaTR
iaBL
iaBC
iaBR

Remarks

Options include:

ValueDescriptionExample
iaNoneThe associated image is hidden and text occupies the entire node’s client area.
iaLTThe node’s client area is split vertically into two parts. The image is top-aligned within the left part, while text occupies the right part.
iaLCThe node’s client area is split vertically into two parts. The image is centered within the left part, while text occupies the right part.
iaLBThe node’s client area is split vertically into two parts. The image is bottom-aligned within the left part, while text occupies the right part.
iaRTThe node’s client area is split vertically into two parts. The image is top-aligned within the right part, while text occupies the left part.
iaRCThe node’s client area is split vertically into two parts. The image is centered within the right part, while text occupies the left part.
iaRBThe node’s client area is split vertically in two parts. The image is bottom-aligned within the right part, while text occupies the right part.
iaTLThe node’s client area is split horizontally into two parts. The image is left-aligned within the top part, while text occupies the bottom part.
iaTCThe node’s client area is split horizontally into two parts. The image is centered within the top part, while text occupies the bottom part.
IaTRThe node’s client area is split horizontally into two parts. The image is right-aligned within the top part, while text occupies the bottom part.
IaBLThe node’s client area is split into two parts horizontally. The image is left-aligned within the bottom part, while text occupies the top part.
IaBCThe node’s client area is split into two parts horizontally. The image is centered within the bottom part, while text occupies the top part.
IaBRThe node’s client area is split into two parts horizontally. The image is right-aligned within the bottom part, while text occupies the top part.

The TdxOcNode.ImageAlign property and the TdxOcNodeInfo.IAlign field reference the TdxOcImageAlign type.

See Also

TdxOcNode.GetNodeInfo

TdxOcNode.ImageAlign

dxorgchr Unit