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


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

Parameters

row
The row index
column
The column index
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).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).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.