FlowLayoutPanel::FlowDirection Property
.NET Framework (current version)
Gets or sets a value indicating the flow direction of the FlowLayoutPanel control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: property FlowDirection FlowDirection { FlowDirection get(); void set(FlowDirection value); }
Property Value
Type: System.Windows.Forms::FlowDirectionOne of the FlowDirection values indicating the direction of consecutive placement of controls in the panel. The default is LeftToRight.
The FlowDirection property is the default property for the FlowLayoutPanel class.
The following code example sets the value of FlowDirection depending on the selected RadioButton.
private: void flowTopDownBtn_CheckedChanged(System::Object^ sender, System::EventArgs^ e) { this->flowLayoutPanel1->FlowDirection = FlowDirection::TopDown; } private: void flowBottomUpBtn_CheckedChanged(System::Object^ sender, System::EventArgs^ e) { this->flowLayoutPanel1->FlowDirection = FlowDirection::BottomUp; } private: void flowLeftToRight_CheckedChanged(System::Object^ sender, System::EventArgs^ e) { this->flowLayoutPanel1->FlowDirection = FlowDirection::LeftToRight; } private: void flowRightToLeftBtn_CheckedChanged( System::Object^ sender, System::EventArgs^ e) { this->flowLayoutPanel1->FlowDirection = FlowDirection::RightToLeft; }
.NET Framework
Available since 2.0
Available since 2.0
Show: