-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPivotTableFormattingActions.vb
More file actions
77 lines (63 loc) · 2.9 KB
/
PivotTableFormattingActions.vb
File metadata and controls
77 lines (63 loc) · 2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
Imports DevExpress.Spreadsheet
Imports System
Namespace SpreadsheetDocServerPivotAPI
Public Module PivotTableFormattingActions
Public ChangeStylePivotTableAction As Action(Of Workbook) = AddressOf ChangeStylePivotTable
Public BandedColumnsAction As Action(Of Workbook) = AddressOf BandedColumns
Public BandedRowsAction As Action(Of Workbook) = AddressOf BandedRows
Public ShowColumnHeadersAction As Action(Of Workbook) = AddressOf ShowColumnHeaders
Public ShowRowHeadersAction As Action(Of Workbook) = AddressOf ShowRowHeaders
Private Sub ChangeStylePivotTable(ByVal workbook As IWorkbook)
#Region "#SetStyle"
Dim worksheet As Worksheet = workbook.Worksheets("Report1")
workbook.Worksheets.ActiveWorksheet = worksheet
' Access the pivot table by its name in the collection.
Dim pivotTable As PivotTable = worksheet.PivotTables("PivotTable1")
' Set the pivot table style.
pivotTable.Style = workbook.TableStyles(BuiltInPivotStyleId.PivotStyleDark7)
#End Region ' #SetStyle
End Sub
Private Sub BandedColumns(ByVal workbook As IWorkbook)
#Region "#BandedColumns"
Dim worksheet As Worksheet = workbook.Worksheets("Report4")
workbook.Worksheets.ActiveWorksheet = worksheet
' Access the pivot table by its name in the collection.
Dim pivotTable As PivotTable = worksheet.PivotTables("PivotTable1")
' Apply the banded column formatting to the pivot table.
pivotTable.BandedColumns = True
#End Region ' #BandedColumns
End Sub
Private Sub BandedRows(ByVal workbook As IWorkbook)
#Region "#BandedRows"
Dim worksheet As Worksheet = workbook.Worksheets("Report4")
workbook.Worksheets.ActiveWorksheet = worksheet
' Access the pivot table by its name in the collection.
Dim pivotTable As PivotTable = worksheet.PivotTables("PivotTable1")
' Apply the banded row formatting to the pivot table.
pivotTable.BandedRows = True
#End Region ' #BandedRows
End Sub
Private Sub ShowColumnHeaders(ByVal workbook As IWorkbook)
#Region "#ColumnHeaders"
Dim worksheet As Worksheet = workbook.Worksheets("Report1")
workbook.Worksheets.ActiveWorksheet = worksheet
' Access the pivot table by its name in the collection.
Dim pivotTable As PivotTable = worksheet.PivotTables("PivotTable1")
' Remove formatting from column headers.
pivotTable.ShowColumnHeaders = False
#End Region ' #ColumnHeaders
End Sub
Private Sub ShowRowHeaders(ByVal workbook As IWorkbook)
#Region "#RowHeaders"
Dim worksheet As Worksheet = workbook.Worksheets("Report1")
workbook.Worksheets.ActiveWorksheet = worksheet
' Access the pivot table by its name in the collection.
Dim pivotTable As PivotTable = worksheet.PivotTables("PivotTable1")
' Add the "Region" field to the column axis area.
pivotTable.ColumnFields.Add(pivotTable.Fields("Region"))
' Remove formatting from row headers.
pivotTable.ShowRowHeaders = False
#End Region ' #RowHeaders
End Sub
End Module
End Namespace