The layout attribute gives you easy, per-element control over how your element should render on screen.
Namespace:
Aspose.Email.Amp
Assembly:
Aspose.Email (in Aspose.Email.dll) Version: 20.2
SyntaxPublic Enumeration LayoutType
public enum class LayoutType
Members
| Member name | Value | Description |
---|
| Nodisplay | 1 |
works like display: none style.
|
| Fixed | 2 | |
| Responsive | 3 |
fills container automatically to aspect ratio
|
| FixedHeight | 4 |
keeps the specified height unchanged
|
| Fill | 5 | |
| Container | 6 |
lets its children define its size, like a normal div
|
| Flex | 7 |
works like display:flex style
|
| Intrinsic | 8 |
responsive until it reaches its height and width
|
See Also