GrapeCity.Xaml.SpreadSheet.Data Namespace > FormulaRule Class : Create Method |
'Declaration Public Shared Function Create( _ ByVal formula As String, _ ByVal style As StyleInfo _ ) As FormulaRule
'Usage Dim formula As String Dim style As StyleInfo Dim value As FormulaRule value = FormulaRule.Create(formula, style)
public static FormulaRule Create( string formula, StyleInfo style )
var style = new GrapeCity.Xaml.SpreadSheet.Data.StyleInfo(); style.Background = new SolidColorBrush(Windows.UI.Colors.Blue); style.BorderLeft = new GrapeCity.Xaml.SpreadSheet.Data.BorderLine(Windows.UI.Colors.Red); style.BorderTop = new GrapeCity.Xaml.SpreadSheet.Data.BorderLine(Windows.UI.Colors.Red); style.BorderRight = new GrapeCity.Xaml.SpreadSheet.Data.BorderLine(Windows.UI.Colors.Red); style.BorderBottom = new GrapeCity.Xaml.SpreadSheet.Data.BorderLine(Windows.UI.Colors.Red); var style1 = new GrapeCity.Xaml.SpreadSheet.Data.StyleInfo(); style1.Background = new SolidColorBrush(Windows.UI.Colors.Green); var style2 = new GrapeCity.Xaml.SpreadSheet.Data.StyleInfo(); style2.Background = new SolidColorBrush(Windows.UI.Colors.Yellow); var rule = GrapeCity.Xaml.SpreadSheet.Data.FormulaRule.Create("=A1=B1+C1", style); rule.Ranges = new GrapeCity.Xaml.SpreadSheet.Data.CellRange[] { new GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1) }; gcSpreadSheet1.Sheets[0].ConditionalFormats.AddRule(rule); gcSpreadSheet1.Sheets[0].Cells[0, 0].Value = 2; gcSpreadSheet1.Sheets[0].Cells[0, 1].Value = 1; gcSpreadSheet1.Sheets[0].Cells[0, 2].Value = 1; gcSpreadSheet1.Sheets[0].Cells[1, 0].Value = 1;
Dim style As New GrapeCity.Xaml.SpreadSheet.Data.StyleInfo() style.Background = New SolidColorBrush(Windows.UI.Colors.Blue) style.BorderLeft = New GrapeCity.Xaml.SpreadSheet.Data.BorderLine(Windows.UI.Colors.Red) style.BorderTop = New GrapeCity.Xaml.SpreadSheet.Data.BorderLine(Windows.UI.Colors.Red) style.BorderRight = New GrapeCity.Xaml.SpreadSheet.Data.BorderLine(Windows.UI.Colors.Red) style.BorderBottom = New GrapeCity.Xaml.SpreadSheet.Data.BorderLine(Windows.UI.Colors.Red) Dim style1 As New GrapeCity.Xaml.SpreadSheet.Data.StyleInfo() style1.Background = New SolidColorBrush(Windows.UI.Colors.Green) Dim style2 As New GrapeCity.Xaml.SpreadSheet.Data.StyleInfo() style2.Background = New SolidColorBrush(Windows.UI.Colors.Yellow) Dim s As New GrapeCity.Xaml.SpreadSheet.Data.StyleInfo() Dim rule = GrapeCity.Xaml.SpreadSheet.Data.FormulaRule.Create("=A1=B1+C1", style) rule.Ranges = New GrapeCity.Xaml.SpreadSheet.Data.CellRange() {New GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1)} GcSpreadSheet1.Sheets(0).ConditionalFormats.AddRule(rule) GcSpreadSheet1.Sheets(0).Cells(0, 0).Value = 2 GcSpreadSheet1.Sheets(0).Cells(0, 1).Value = 1 GcSpreadSheet1.Sheets(0).Cells(0, 2).Value = 1 GcSpreadSheet1.Sheets(0).Cells(1, 0).Value = 1
Target Platforms: Windows Server 2012, Windows RT