GrapeCity MultiRow Windows Forms Documentation
SplitStyle Property
Example 


Gets or sets the split line's style.
Syntax
<SRDescriptionAttribute("Indicates the style of the SplitLine.")>
<SRCategoryAttribute("Appearance")>
Public Property SplitStyle As SplitStyle
Dim instance As GcMultiRow
Dim value As SplitStyle
 
instance.SplitStyle = value
 
value = instance.SplitStyle
[SRDescription("Indicates the style of the SplitLine.")]
[SRCategory("Appearance")]
public SplitStyle SplitStyle {get; set;}

Property Value

A SplitStyle value represents the split line's style.
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeExceptionThe assigned SplitStyle's width is less than 0.
Remarks
If the SplitOffice2007Style property value is not Office2007Style.None, the SplitStyle property does not take effect.
Example
The following code example shows how to use this property to customize the split line's appearance. This code example is part of a larger example provided for the SplitMode property.
void changeSplitLineStyleButton_Click(object sender, EventArgs e)
        {
            SplitStyle splitStyle = this.gcMultiRow1.SplitStyle;

            if (this.gcMultiRow1.SplitStyle.BackColor == SystemColors.Control)
            {
                splitStyle.BackColor = Color.FromArgb(255, 215, 230, 247);
                splitStyle.DarkColor = Color.FromArgb(255, 104, 140, 175);
                splitStyle.LightColor = Color.FromArgb(255, 255, 255, 255);
                splitStyle.Width = 7;
            }
            else
            {
                splitStyle.BackColor = SystemColors.Control;
                splitStyle.DarkColor = SystemColors.ControlDark;
                splitStyle.LightColor = SystemColors.ControlLight;
                splitStyle.Width = 6;
            }

            this.gcMultiRow1.SplitStyle = splitStyle;
        }
Private Sub changeSplitLineStyleButton_Click(ByVal sender As Object, ByVal e As EventArgs) Handles changeSplitLineStyleButton.Click
        Dim splitStyle As SplitStyle = Me.gcMultiRow1.SplitStyle

        If Me.gcMultiRow1.SplitStyle.BackColor = SystemColors.Control Then
            splitStyle.BackColor = Color.FromArgb(255, 215, 230, 247)
            splitStyle.DarkColor = Color.FromArgb(255, 104, 140, 175)
            splitStyle.LightColor = Color.FromArgb(255, 255, 255, 255)
            splitStyle.Width = 7
        Else
            splitStyle.BackColor = SystemColors.Control
            splitStyle.DarkColor = SystemColors.ControlDark
            splitStyle.LightColor = SystemColors.ControlLight
            splitStyle.Width = 6
        End If

        Me.gcMultiRow1.SplitStyle = splitStyle
    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

GcMultiRow Class
GcMultiRow Members
SplitMode Property
SplitOffice2007Style Property

 

 


Copyright © GrapeCity, inc. All rights reserved.