Compare commits
2 Commits
8ff4ae5a27
...
f515ebf69f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f515ebf69f | ||
|
|
0a1d5b9eb1 |
@@ -82,6 +82,25 @@ Public Class GridBuilder
|
||||
Return Me
|
||||
End Function
|
||||
|
||||
Public Function WithFontSizeDelta(pFontSizeDelta As Integer) As GridBuilder
|
||||
For Each oGridView In Views
|
||||
WithFontSizeDelta(oGridView, pFontSizeDelta)
|
||||
Next
|
||||
|
||||
Return Me
|
||||
End Function
|
||||
|
||||
Public Function WithFontSizeDelta(pGridView As GridView, pFontSizeDelta As Integer) As GridBuilder
|
||||
pGridView.Appearance.Row.FontSizeDelta = pFontSizeDelta
|
||||
pGridView.Appearance.GroupRow.FontSizeDelta = pFontSizeDelta
|
||||
pGridView.Appearance.GroupPanel.FontSizeDelta = pFontSizeDelta
|
||||
pGridView.Appearance.GroupFooter.FontSizeDelta = pFontSizeDelta
|
||||
pGridView.Appearance.FilterPanel.FontSizeDelta = pFontSizeDelta
|
||||
pGridView.Appearance.HeaderPanel.FontSizeDelta = pFontSizeDelta
|
||||
|
||||
Return Me
|
||||
End Function
|
||||
|
||||
Public Function WithClipboardHandler() As GridBuilder
|
||||
For Each oGridView In Views
|
||||
WithClipboardHandler(oGridView)
|
||||
|
||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.9.1.0")>
|
||||
<Assembly: AssemblyFileVersion("1.9.1.0")>
|
||||
<Assembly: AssemblyVersion("1.10.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.10.0.0")>
|
||||
|
||||
Reference in New Issue
Block a user