CODIUM Programming Language (CPL) CodiumSDK CPL Display
July 14, 2023 at 8:30 PMEnsamblado: CodiumSDK.dll
| C# |
| public enum Display |
| Constante | Descripción | |
|---|---|---|
| Block | Displays an element as a block element(like p). It starts on a new line, and takes up the whole width | |
| Contents | Makes the container disappear, making the child elements children of the element the next level up in the DOM | |
| Flex | Displays an element as a block-level flex container | |
| Grid | Displays an element as a block-level grid container | |
| Inherit | Inherits this property from its parent element. | |
| Initial | Sets this property to its default value. | |
| Inline | Displays an element as an inline element (like span). Any height and width properties will have no effect | |
| Inline_Block | Displays an element as an inline-level block container.The element itself is formatted as an inline element, but you can apply height and width values | |
| Inline_Flex | Displays an element as an inline-level flex container | |
| Inline_Grid | Displays an element as an inline-level grid container | |
| Inline_Table | The element is displayed as an inline-level table | |
| List_Item | Let the element behave like a li element | |
| None | The element is completely removed | |
| Run_In | Displays an element as either block or inline, depending on context | |
| Table | Let the element behave like a table element | |
| Table_Caption | Let the element behave like a caption element | |
| Table_Cell | Let the element behave like a td element | |
| Table_Column | Let the element behave like a col element | |
| Table_Column_Group | Let the element behave like a colgroup element | |
| Table_Footer_Group | Let the element behave like a tfoot element | |
| Table_Header_Group | Let the element behave like a thead element | |
| Table_Row | Let the element behave like a tr element | |
| Table_Row_Group | Let the element behave like a tbody element |