Horje
c# excel fix first row Code Example
c# excel fix first row
// Fix first row
workSheet.Activate();
workSheet.Application.ActiveWindow.SplitRow = 1;
workSheet.Application.ActiveWindow.FreezePanes = true;
// Now apply autofilter
Excel.Range firstRow = (Excel.Range)workSheet.Rows[1];
firstRow.AutoFilter(1, 
                    Type.Missing, 
                    Excel.XlAutoFilterOperator.xlAnd, 
                    Type.Missing, 
                    true);




Csharp

Related
C# read GroupComponent Or PartComponent  using regex Code Example C# read GroupComponent Or PartComponent using regex Code Example
c# datagridview change column alignment Code Example c# datagridview change column alignment Code Example
using (SqlDataReader sdr = cmd.ExecuteReader()) Code Example using (SqlDataReader sdr = cmd.ExecuteReader()) Code Example
open and close autocad api Code Example open and close autocad api Code Example
c# ClassMap Code Example c# ClassMap Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10