Spread Windows Forms 10.0 Product Documentation
GetConditionalFormatting(Int32,Int32,Int32,Int32) Method
Example 


Starting row index
Starting column index
Number of rows
Number of columns
Gets all conditional formatting in the specified cell range.
Syntax
'Declaration
 
Public Overloads Function GetConditionalFormatting( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) As ConditionalFormatting()
'Usage
 
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
Dim value() As ConditionalFormatting
 
value = instance.GetConditionalFormatting(row, column, rowCount, columnCount)
public ConditionalFormatting[] GetConditionalFormatting( 
   int row,
   int column,
   int rowCount,
   int columnCount
)

Parameters

row
Starting row index
column
Starting column index
rowCount
Number of rows
columnCount
Number of columns
Example
This example uses the GetConditionalFormatting method.
fpSpread1.Sheets[0].Cells[0, 0].Value = 3;
fpSpread1.Sheets[0].Cells[1, 0].Value = 2;
fpSpread1.Sheets[0].Cells[1, 1].Value = 10;
fpSpread1.Sheets[0].Cells[0, 2].Value = 1;
//Unique or Duplicate CF
FarPoint.Win.Spread.UniqueOrDuplicatedConditionalFormattingRule ud = new FarPoint.Win.Spread.UniqueOrDuplicatedConditionalFormattingRule(false);
ud.IsUnique = true;
ud.BackColor = Color.Thistle;
fpSpread1.ActiveSheet.SetConditionalFormatting(0, 0, 3, 3, ud);
listBox1.Items.Add(fpSpread1.ActiveSheet.GetConditionalFormatting(0, 0, 3, 3).Count().ToString());
FpSpread1.Sheets(0).Cells(0, 0).Value = 3
FpSpread1.Sheets(0).Cells(1, 0).Value = 2
FpSpread1.Sheets(0).Cells(1, 1).Value = 10
FpSpread1.Sheets(0).Cells(0, 2).Value = 1
'Unique or Duplicate CF
Dim ud = New FarPoint.Win.Spread.UniqueOrDuplicatedConditionalFormattingRule(False)
ud.IsUnique = True
ud.BackColor = Color.Thistle
FpSpread1.ActiveSheet.SetConditionalFormatting(0, 0, 3, 3, ud)
ListBox1.Items.Add(FpSpread1.ActiveSheet.GetConditionalFormatting(0, 0, 3, 3).Count.ToString())
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SheetView Class
SheetView Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.