GrapeCity.Win.MultiRow Namespace > ThreeDBorder Class : DarkDarkColor Property |
<DefaultValueAttribute()> Public Property DarkDarkColor As Color
Dim instance As ThreeDBorder Dim value As Color instance.DarkDarkColor = value value = instance.DarkDarkColor
[DefaultValue()] public Color DarkDarkColor {get; set;}
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
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