GrapeCity.Xaml.SpreadSheet.Data Namespace > IconSetRule Class : IconCriteria Property |
'Declaration Public ReadOnly Property IconCriteria As IconCriterion()
'Usage Dim instance As IconSetRule Dim value() As IconCriterion value = instance.IconCriteria
public IconCriterion[] IconCriteria {get;}
GcSpreadSheet1.Sheets[0].Cells[0, 0].Value = 1; GcSpreadSheet1.Sheets[0].Cells[1, 0].Value = 10; GcSpreadSheet1.Sheets[0].Cells[2, 0].Value = 6; GcSpreadSheet1.Sheets[0].Cells[3, 0].Value = 3; GrapeCity.Xaml.SpreadSheet.Data.IconSetRule test = new GrapeCity.Xaml.SpreadSheet.Data.IconSetRule(); test.IconSetType = GrapeCity.Xaml.SpreadSheet.Data.IconSetType.FourTrafficLights; test.IconCriteria[0] = new GrapeCity.Xaml.SpreadSheet.Data.IconCriterion(true, GrapeCity.Xaml.SpreadSheet.Data.IconValueType.Number, 6); test.Ranges = new GrapeCity.Xaml.SpreadSheet.Data.CellRange[] { new GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1) }; GcSpreadSheet1.Sheets[0].ConditionalFormats.AddRule(test);
GcSpreadSheet1.Sheets(0).Cells(0, 0).Value = 1 GcSpreadSheet1.Sheets(0).Cells(1, 0).Value = 10 GcSpreadSheet1.Sheets(0).Cells(2, 0).Value = 6 GcSpreadSheet1.Sheets(0).Cells(3, 0).Value = 3 Dim test As New GrapeCity.Xaml.SpreadSheet.Data.IconSetRule() test.IconSetType = GrapeCity.Xaml.SpreadSheet.Data.IconSetType.FourTrafficLights test.IconCriteria(0) = New GrapeCity.Xaml.SpreadSheet.Data.IconCriterion(True, GrapeCity.Xaml.SpreadSheet.Data.IconValueType.Number, 6) test.Ranges = New GrapeCity.Xaml.SpreadSheet.Data.CellRange() {New GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1)} GcSpreadSheet1.Sheets(0).ConditionalFormats.AddRule(test)
Target Platforms: Windows Server 2012, Windows RT