TreeView.LineColor Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the color of the lines connecting the nodes of the TreeView control.
public:
property System::Drawing::Color LineColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
public System.Drawing.Color LineColor { get; set; }
member this.LineColor : System.Drawing.Color with get, set
Public Property LineColor As Color
Property Value
The Color of the lines connecting the tree nodes.
Examples
The following code example demonstrates setting the TreeNode line color. To run this example, paste the code into a Windows Form. Call InitializeLineTreeView
from the form's constructor or Load event handler.
private:
TreeView^ lineTreeView;
public:
void InitializeLineTreeView()
{
lineTreeView = gcnew TreeView();
lineTreeView->Size = System::Drawing::Size(200, 200);
lineTreeView->LineColor = Color::Red;
// Create the root nodes.
TreeNode^ docNode = gcnew TreeNode("Documents");
// Add some additional nodes.
docNode->Nodes->Add("phoneList.doc");
docNode->Nodes->Add("resume.doc");
lineTreeView->Nodes->Add(docNode);
this->Controls->Add(lineTreeView);
}
private TreeView lineTreeView;
public void InitializeLineTreeView()
{
lineTreeView = new TreeView();
lineTreeView.Size = new Size(200, 200);
lineTreeView.LineColor = Color.Red;
// Create the root nodes.
TreeNode docNode = new TreeNode("Documents");
// Add some additional nodes.
docNode.Nodes.Add("phoneList.doc");
docNode.Nodes.Add("resume.doc");
lineTreeView.Nodes.Add(docNode);
Controls.Add(lineTreeView);
}
Private lineTreeView As TreeView
Public Sub InitializeLineTreeView()
lineTreeView = New TreeView()
lineTreeView.Size = New Size(200, 200)
lineTreeView.LineColor = Color.Red
' Create the root nodes.
Dim docNode As New TreeNode("Documents")
' Add some additional nodes.
docNode.Nodes.Add("phoneList.doc")
docNode.Nodes.Add("resume.doc")
lineTreeView.Nodes.Add(docNode)
Controls.Add(lineTreeView)
End Sub
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.