Version

ExplicitLayoutTileSizeBehavior Enumeration

Determines whether tile heights are synchronized across columns and whether tile widths are synchronized across rows when TileLayoutOrder is set to 'UseExplicitRowColumnOnTile'
Syntax
'Declaration
 
Public Enum ExplicitLayoutTileSizeBehavior 
   Inherits System.Enum
public enum ExplicitLayoutTileSizeBehavior : System.Enum 
Members
MemberDescription
SynchronizeTileHeightsAcrossColumnsTile heights are synchronized across all columns in the layout. For example, resizing a tile's height in one column will affect the height of tiles in all columns that intersect with the resized tile's row. However, resizing its width will affect only that tile unless row spans > 1 are specified that intersect with the tile's row.
SynchronizeTileWidthsAcrossRowsTile widths are synchronized across all rows in the layout. For example, resizing a tile's width in one row will affect the width of tiles in all rows that intersect with the resized tile's column. However, resizing its height will affect only that tile unless column spans > 1 are specified that intersect with the tile's column.
SynchronizeTileWidthsAndHeightsTile heights and widths are synchronized across all row and columns in the layout. For example, resizing a tile's height in one column will affect the height of tiles in all columns that intersect with the resized tile's row. Likewise, resizing its width will affect the width of tiles in all rows that intersect with the resized tile's column.
Remarks

If there are ColumnsSpan values specified > 1 on one or more tiles then all tiles in intersecting columns will behave as if this setting was 'SynchronizeTileWidthsAndHeights' with respect to all other tiles in those intersecting columns.

Likewise, if there are RowSpan values specified > 1 on one or more tiles then all tiles in intersecting rows will behave as if this setting was 'SynchronizeTileWidthsAndHeights' with respect to all other tiles in those intersecting rows.

Note: regardless of the value of this setting if the overall size is constrained (e.g. if the HorizontalTileAreaAlignment and/or VerticalTileAreaAlignment is set to 'Stretch') then resizing a tile's width may indirectly affect the width of all tiles and resizing its height may indirectly affect the height of all tiles respectively.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also