DashboardLayout for WinForms | ComponentOne
C1.Win.Layout Namespace / SynchronizeItemContainerDelegate Delegate
Calling ILayout instance.
ItemContainer's id
ItemContainer's new id (if this is a synchronizing with renaming)

In This Topic
    SynchronizeItemContainerDelegate Delegate
    In This Topic
    Delegate for synchronizing ItemContainer instances event. Synchronizes item containers with identical id.
    Syntax
    'Declaration
     
    
    Public Delegate Sub SynchronizeItemContainerDelegate( _
       ByVal sender As ILayout, _
       ByVal oldId As String, _
       Optional ByVal newId As String _
    ) 
    public delegate void SynchronizeItemContainerDelegate( 
       ILayout sender,
       string oldId,
       string newId
    )

    Parameters

    sender
    Calling ILayout instance.
    oldId
    ItemContainer's id
    newId
    ItemContainer's new id (if this is a synchronizing with renaming)
    See Also