pbFixedWidth - cWebColumnTags
Determines whether the column width is calculated as a ratio or a fixed pixel width
Type: Property
Access: Read/Write
Data Type: Boolean
Parameters: None
Syntax
{ WebProperty=Client }
Property Boolean pbFixedWidth
| Access Type | Syntax |
|---|---|
| Read Access: | WebGet pbFixedWidth to BooleanVariable |
| Write Access: | WebSet pbFixedWidth to BooleanVariable/Value |
Description
If this is set to True, the column's width, as set by piWidth, will be determined with a fixed pixel size instead of a ratio.
This is meant to be used when a column must be a fixed width. For example, if a column contains an image or an icon, dynamic sizing will not make sense.
Multi-Line Support in Lists and Grids
The various combinations of piWidth, pbFixedWidth, pbNewLine, piListColSpan, piListRowSpan and peAlign can create a variety of grid layouts. The best way to see how these all interact is to experiment with the Studio's Web Designer.
About Web Properties
Each web property maintains two values: The regular property value is set during object creation and should not be changed during the lifetime of that object. To access that value, use the standard property Get and Set syntax.
The web property value is the local value stored at each client. This is synchronized to the client's local value whenever a server call is being processed. To access the web property value, use the WebGet and WebSet syntax above instead of the standard Get and Set syntax.