GrapeCity MultiRow Windows Forms Documentation
DarkColor Property (ThreeDBorder)
Example 


Gets or sets the dark area color.
Syntax
<DefaultValueAttribute()>
Public Property DarkColor As Color
Dim instance As ThreeDBorder
Dim value As Color
 
instance.DarkColor = value
 
value = instance.DarkColor
[DefaultValue()]
public Color DarkColor {get; set;}

Property Value

A System.Drawing.Color value that represents the dark area color. The default is System.Drawing.SystemColors.ControlDark.
Example
The following code example shows how to set a ThreeDBorder in a Cell. This example is part of a larger example available for the Border class.
void setThreeDBorderToCell_Click(object sender, EventArgs e)
       {
           Template template1 = gcMultiRow1.Template;

           Row row = template1.Row;

           ThreeDBorder threeDBorder1 = new ThreeDBorder();
           threeDBorder1.DarkColor = Color.Gray;
           threeDBorder1.DarkDarkColor = Color.DarkGray;
           threeDBorder1.LightColor = Color.White;
           threeDBorder1.LightLightColor = Color.LightGray;

           threeDBorder1.ThreeDEffect = ThreeDEffect.Sunken;

           row.Cells[0].Style.Border = threeDBorder1;

           // Reload template1.
           this.gcMultiRow1.Template = template1;
       }
Private Sub setThreeDBorderToCell_Click(ByVal sender As Object, ByVal e As EventArgs) Handles 
setThreeDBorderToCell.Click
        Dim template1 As Template = gcMultiRow1.Template

        Dim row As Row = template1.Row

        Dim threeDBorder1 As New ThreeDBorder()
        threeDBorder1.DarkColor = Color.Gray
        threeDBorder1.DarkDarkColor = Color.DarkGray
        threeDBorder1.LightColor = Color.White
        threeDBorder1.LightLightColor = Color.LightGray

        threeDBorder1.ThreeDEffect = ThreeDEffect.Sunken
        row.Cells(0).Style.Border = threeDBorder1

        ' Reload template1.
        Me.gcMultiRow1.Template = template1
    End Sub
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

Reference

ThreeDBorder Class
ThreeDBorder Members

 

 


Copyright © GrapeCity, inc. All rights reserved.