GrapeCity.Win.MultiRow Namespace > NamedCellStyleDictionary Class : Item Property |
Dim instance As NamedCellStyleDictionary Dim key As String Dim value As CellStyle instance.Item(key) = value value = instance.Item(key)
Exception | Description |
---|---|
System.ArgumentNullException | The key is a null reference (Nothing in Visual Basic). -or- The assigned value is a null reference (Nothing in Visual Basic). |
System.ArgumentException | The key is a valid name. |
System.Collections.Generic.KeyNotFoundException | The property is retrieved and key is not found. |
void setFirstNamedCellStyle_Click(object sender, EventArgs e) { CellStyle alternatingColumnsDefaultCellStyle = new CellStyle(); alternatingColumnsDefaultCellStyle.BackColor = Color.FromArgb(150, 160, 159); alternatingColumnsDefaultCellStyle.ForeColor = Color.White; alternatingColumnsDefaultCellStyle.NullValue = "Text"; //Change the "AlternatingColumnsDefaultCellStyle" this.gcMultiRow1.NamedCellStyles["AlternatingColumnsDefaultCellStyle"] = alternatingColumnsDefaultCellStyle; CellStyle columnsDefaultCellStyle = new CellStyle(); columnsDefaultCellStyle.BackColor = Color.FromArgb(226, 228, 228); columnsDefaultCellStyle.ForeColor = Color.Black; columnsDefaultCellStyle.NullValue = "Text"; //Change the "ColumnsDefaultCellStyle" this.gcMultiRow1.NamedCellStyles["ColumnsDefaultCellStyle"] = columnsDefaultCellStyle; //You can load one predefined NamedCellStyleDictionary from one file. //this.gcMultiRow1.NamedCellStyles.Load(@"C:\temp\NamedCellStyles.xml"); //You can save the NamedCellStyleDictionary to one file. //this.gcMultiRow1.NamedCellStyles.Save(@"C:\temp\NamedCellStyles.xml"); }
Private Sub setFirstNamedCellStyle_Click(ByVal sender As Object, ByVal e As EventArgs) Handles setFirstStyle.Click Dim alternatingColumnsDefaultCellStyle As New CellStyle() alternatingColumnsDefaultCellStyle.BackColor = Color.FromArgb(150, 160, 159) alternatingColumnsDefaultCellStyle.ForeColor = Color.White alternatingColumnsDefaultCellStyle.NullValue = "Text" 'Change the "AlternatingColumnsDefaultCellStyle" Me.gcMultiRow1.NamedCellStyles("AlternatingColumnsDefaultCellStyle") = alternatingColumnsDefaultCellStyle Dim columnsDefaultCellStyle As New CellStyle() columnsDefaultCellStyle.BackColor = Color.FromArgb(226, 228, 228) columnsDefaultCellStyle.ForeColor = Color.Black columnsDefaultCellStyle.NullValue = "Text" 'Change the "ColumnsDefaultCellStyle" Me.gcMultiRow1.NamedCellStyles("ColumnsDefaultCellStyle") = columnsDefaultCellStyle 'You can load one predefined NamedCellStyleDictionary from one file. 'this.gcMultiRow1.NamedCellStyles.Load(@"C:\temp\NamedCellStyles.xml"); 'You can save the NamedCellStyleDictionary to one file. 'this.gcMultiRow1.NamedCellStyles.Save(@"C:\temp\NamedCellStyles.xml"); 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