Panel Right { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Right property of the SplitContainer class represents the right or bottom panel of the split container, depending on the orientation. This panel is styled with the CSS class "split-right". It is a public instance property of type Panel, allowing you to access and manipulate the right panel of the split container.

Usage

To use the Right property, you need to have an instance of the SplitContainer class. You can then access the Right property to get or set the panel that represents the right or bottom section of the split container.

Example usage:

SplitContainer splitContainer = new SplitContainer();
Panel rightPanel = splitContainer.Right;
// You can now manipulate the rightPanel as needed
rightPanel.Style.Set("background-color", "lightblue");

Example

SplitContainer splitContainer = new SplitContainer();
Panel rightPanel = splitContainer.Right;
// You can now manipulate the rightPanel as needed
rightPanel.Style.Set("background-color", "lightblue");