ComponentOne FinancialChart for WPF
C1.WPF Namespace / C1DockPanel Class / LastChildFill Property



In This Topic
    LastChildFill Property
    In This Topic
    Gets or sets a value indicating whether the last child of the panel fills the remaining space.
    Syntax
    'Declaration
     
    
    Public Property LastChildFill As Boolean
    'Usage
     
    
    Dim instance As C1DockPanel
    Dim value As Boolean
     
    instance.LastChildFill = value
     
    value = instance.LastChildFill
    public bool LastChildFill {get; set;}
    public:
    property bool LastChildFill {
       bool get();
       void set (    bool value);
    }
    Remarks
    If this property is set to True, then the Dock property of the last child element will be ignored, and the panel will try to fill the empty space.
    See Also