Spread Windows Forms 6.0 Product Documentation
Color Property
See Also  Example Support Options
FarPoint.Win Assembly > FarPoint.Win Namespace > ComplexBorderSide Class : Color Property


Glossary Item Box

Gets the color of this side of the complex border.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Color As Color
Visual Basic (Usage)Copy Code
Dim instance As ComplexBorderSide
Dim value As Color
 
value = instance.Color
C# 
public Color Color {get;}

Property Value

Color object containing the color of the complex border side

Remarks

The default value is Color.WindowFrame.

Example

This example returns the color of the side.
C#Copy Code
FarPoint.Win.ComplexBorderSide side = new FarPoint.Win.ComplexBorderSide(true, Color.Red, 1.5, Drawing2D.DashStyle.Solid, new float[] {0.335F, 0.5F, 0.66F, 1.0F}, new float[] {0.33F, 0.5F, 0.66F, 1.0F});
FarPoint.Win.ComplexBorder bord = new FarPoint.Win.ComplexBorder(side);
Color c = side.Color
MessageBox.Show("The color of the side is " + c.ToString() & ".");
Visual BasicCopy Code
Dim side As New FarPoint.Win.ComplexBorderSide(True, Color.Red, 1.5, Drawing2D.DashStyle.Solid, New Single() {0.33F, 0.5F, 0.66F, 1.0F}, New Single() {0.33F, 0.5F, 0.66F, 1.0F})
Dim bord As New FarPoint.Win.ComplexBorder(side)
Dim c As Color = side.Color
MessageBox.Show("The color of the side is " + c.ToString() + ".")

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.