Version

ColumnLayoutAssigned Event

This event is raised when a ColumnLayout is assigned to an Island of rows.
Syntax
'Declaration
 
Public Event ColumnLayoutAssigned As EventHandler(Of ColumnLayoutAssignedEventArgs)
public event EventHandler<ColumnLayoutAssignedEventArgs> ColumnLayoutAssigned
Event Data

The event handler receives an argument of type ColumnLayoutAssignedEventArgs containing data related to this event. The following ColumnLayoutAssignedEventArgs properties provide information specific to this event.

PropertyDescription
ColumnLayout The ColumnLayout that this event was triggered for.
DataType Gets the type of data that this ColumnLayout will represent.
Key Gets the key that this ColumnLayout represetns.
Level The depth at which the ColumnLayout is representing.
Rows Gets the collection of rows or row island that this particular ColumnLayout will represent.
Remarks
A developer can change the ColumnLayout being used by assigning a different ColumnLayout to the ColumnLayout property
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