Title: | Create Native 'Excel' Charts and Work with Microsoft 'Excel' Files |
---|---|
Description: | An R interface to the 'OpenPyXL' 'Python' library to create native 'Excel' charts and work with Microsoft 'Excel' files. |
Authors: | Felix Luginbuhl [aut, cre, cph] , Eric Gazoni [ctb, cph] (Author of openpyxl (see AUTHORS and COPYRIGHT files for details)), Charlie Clark [ctb, cph] (Author of openpyxl (see AUTHORS and COPYRIGHT files for details)), openpyxl authors [ctb, cph] (Authors of openpyxl (see AUTHORS and COPYRIGHT files for details)) |
Maintainer: | Felix Luginbuhl <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.0.2 |
Built: | 2025-01-10 05:47:52 UTC |
Source: | https://github.com/lgnbhl/xlcharts |
Convert a coordinate to an absolute coordinate string (B12 -> $B$12)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.cell.html
absolute_coordinate(coord_string, ...)
absolute_coordinate(coord_string, ...)
coord_string |
coord_string |
... |
Additional arguments, i.e. kwargs. |
An string.
## Not run: absolute_coordinate("A1") ## End(Not run)
## Not run: absolute_coordinate("A1") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.spreadsheet_drawing.html
AbsoluteAnchor(pos = NULL, ext = NULL, ...)
AbsoluteAnchor(pos = NULL, ext = NULL, ...)
pos |
pos |
ext |
ext |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AbsoluteAnchor() ## End(Not run)
## Not run: AbsoluteAnchor() ## End(Not run)
Get the currently active sheet or NULL.
active(py_obj)
active(py_obj)
py_obj |
py_obj |
:type: :class:'openpyxl.worksheet.worksheet.Worksheet'
An openpyxl Python object.
## Not run: wb <- Workbook() wb |> active() #equivalent to wb$active ## End(Not run)
## Not run: wb <- Workbook() wb |> active() #equivalent to wb$active ## End(Not run)
Optionally provide a cell for the top-left anchor
add_chart(py_obj, chart, anchor = NULL, ...)
add_chart(py_obj, chart, anchor = NULL, ...)
py_obj |
py_obj |
chart |
chart |
anchor |
anchor |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: wb <- Workbook() ws <- wb$active chart <- BarChart(type = "col") data <- Reference(ws, min_col=2, min_row=1, max_row=7, max_col=3) cats <- Reference(ws, min_col=1, min_row=2, max_row=7) chart |> add_data(data = data, titles_from_data = TRUE) |> set_categories(cats) ws |> add_chart(chart, "A10") ## End(Not run)
## Not run: wb <- Workbook() ws <- wb$active chart <- BarChart(type = "col") data <- Reference(ws, min_col=2, min_row=1, max_row=7, max_col=3) cats <- Reference(ws, min_col=1, min_row=2, max_row=7) chart |> add_data(data = data, titles_from_data = TRUE) |> set_categories(cats) ws |> add_chart(chart, "A10") ## End(Not run)
The default is to treat each column as a data series.
add_data(py_obj, data, from_rows = FALSE, titles_from_data = FALSE)
add_data(py_obj, data, from_rows = FALSE, titles_from_data = FALSE)
py_obj |
py_obj |
data |
data |
from_rows |
from_rows |
titles_from_data |
titles_from_data |
An openpyxl Python object.
## Not run: wb <- Workbook() ws <- active(wb) chart1 <- BarChart( type = "col", style = 10, title = "Bar Chart", shape = 4 ) |> y_axis(title = "Test number") |> x_axis(title = "Sample length (mm)") data <- Reference(ws, min_col=2, min_row=1, max_row=7, max_col=3) cats <- Reference(ws, min_col=1, min_row=2, max_row=7) chart1 |> add_data(data = data, titles_from_data = TRUE) |> set_categories(cats) ## End(Not run)
## Not run: wb <- Workbook() ws <- active(wb) chart1 <- BarChart( type = "col", style = 10, title = "Bar Chart", shape = 4 ) |> y_axis(title = "Test number") |> x_axis(title = "Sample length (mm)") data <- Reference(ws, min_col=2, min_row=1, max_row=7, max_col=3) cats <- Reference(ws, min_col=1, min_row=2, max_row=7) chart1 |> add_data(data = data, titles_from_data = TRUE) |> set_categories(cats) ## End(Not run)
Check for duplicate name in definedNames and other worksheet tables before adding table.
add_table(py_obj, table)
add_table(py_obj, table)
py_obj |
py_obj |
table |
table |
An openpyxl Python object.
## Not run: wb <- Workbook() ws <- wb$active tab = Table(displayName="Table1", ref="A1:E5") ws |> add_table(tab) ws$tables ## End(Not run)
## Not run: wb <- Workbook() ws <- wb$active tab = Table(displayName="Table1", ref="A1:E5") ws |> add_table(tab) ws$tables ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
AdjPoint2D(x = NULL, y = NULL, ...)
AdjPoint2D(x = NULL, y = NULL, ...)
x |
x |
y |
y |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AdjPoint2D(x = 1L, y = 2L) ## End(Not run)
## Not run: AdjPoint2D(x = 1L, y = 2L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
AdjustHandleList(...)
AdjustHandleList(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AdjustHandleList() ## End(Not run)
## Not run: AdjustHandleList() ## End(Not run)
Alignment options for use in styles.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.alignment.html
Alignment( horizontal = NULL, vertical = NULL, textRotation = 0L, wrapText = NULL, shrinkToFit = NULL, indent = 0L, relativeIndent = 0L, justifyLastLine = NULL, readingOrder = 0L, text_rotation = NULL, wrap_text = NULL, shrink_to_fit = NULL, mergeCell = NULL, ... )
Alignment( horizontal = NULL, vertical = NULL, textRotation = 0L, wrapText = NULL, shrinkToFit = NULL, indent = 0L, relativeIndent = 0L, justifyLastLine = NULL, readingOrder = 0L, text_rotation = NULL, wrap_text = NULL, shrink_to_fit = NULL, mergeCell = NULL, ... )
horizontal |
horizontal |
vertical |
vertical |
textRotation |
textRotation |
wrapText |
wrapText |
shrinkToFit |
shrinkToFit |
indent |
indent |
relativeIndent |
relativeIndent |
justifyLastLine |
justifyLastLine |
readingOrder |
readingOrder |
text_rotation |
text_rotation |
wrap_text |
wrap_text |
shrink_to_fit |
shrink_to_fit |
mergeCell |
mergeCell |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Alignment() ## End(Not run)
## Not run: Alignment() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
AlphaBiLevelEffect(thresh = NULL, ...)
AlphaBiLevelEffect(thresh = NULL, ...)
thresh |
thresh |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AlphaBiLevelEffect(thresh = 1L) ## End(Not run)
## Not run: AlphaBiLevelEffect(thresh = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
AlphaCeilingEffect(...)
AlphaCeilingEffect(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AlphaCeilingEffect() ## End(Not run)
## Not run: AlphaCeilingEffect() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
AlphaFloorEffect(...)
AlphaFloorEffect(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AlphaFloorEffect() ## End(Not run)
## Not run: AlphaFloorEffect() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
AlphaInverseEffect(...)
AlphaInverseEffect(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AlphaInverseEffect() ## End(Not run)
## Not run: AlphaInverseEffect() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
AlphaModulateEffect(cont = NULL, ...)
AlphaModulateEffect(cont = NULL, ...)
cont |
cont |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AlphaModulateEffect(cont = EffectContainer(type = "tree")) ## End(Not run)
## Not run: AlphaModulateEffect(cont = EffectContainer(type = "tree")) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
AlphaModulateFixedEffect(amt = NULL, ...)
AlphaModulateFixedEffect(amt = NULL, ...)
amt |
amt |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AlphaModulateFixedEffect(amt = 1L) ## End(Not run)
## Not run: AlphaModulateFixedEffect(amt = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
AlphaReplaceEffect(a = NULL, ...)
AlphaReplaceEffect(a = NULL, ...)
a |
a |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AlphaReplaceEffect(a = 1L) ## End(Not run)
## Not run: AlphaReplaceEffect(a = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.spreadsheet_drawing.html
AnchorClientData(fLocksWithSheet = NULL, fPrintsWithSheet = NULL, ...)
AnchorClientData(fLocksWithSheet = NULL, fPrintsWithSheet = NULL, ...)
fLocksWithSheet |
fLocksWithSheet |
fPrintsWithSheet |
fPrintsWithSheet |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AnchorClientData() ## End(Not run)
## Not run: AnchorClientData() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.spreadsheet_drawing.html
AnchorMarker(col = 0L, colOff = 0L, row = 0L, rowOff = 0L, ...)
AnchorMarker(col = 0L, colOff = 0L, row = 0L, rowOff = 0L, ...)
col |
col |
colOff |
colOff |
row |
row |
rowOff |
rowOff |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AnchorMarker() ## End(Not run)
## Not run: AnchorMarker() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
angle_to_degrees(value, ...)
angle_to_degrees(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
A numeric value.
## Not run: angle_to_degrees(value = 1000L) ## End(Not run)
## Not run: angle_to_degrees(value = 1000L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.area_chart.html
AreaChart(axId = NULL, extLst = NULL, ...)
AreaChart(axId = NULL, extLst = NULL, ...)
axId |
axId |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AreaChart() ## End(Not run)
## Not run: AreaChart() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.area_chart.html
AreaChart3D(gapDepth = NULL, ...)
AreaChart3D(gapDepth = NULL, ...)
gapDepth |
gapDepth |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AreaChart3D() ## End(Not run)
## Not run: AreaChart3D() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.cell_style.html
ArrayDescriptor(key = NULL, ...)
ArrayDescriptor(key = NULL, ...)
key |
key |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ArrayDescriptor() ## End(Not run)
## Not run: ArrayDescriptor() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.formula.html
ArrayFormula(ref, text = NULL, ...)
ArrayFormula(ref, text = NULL, ...)
ref |
ref |
text |
text |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ArrayFormula(ref = "A1") ## End(Not run)
## Not run: ArrayFormula(ref = "A1") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.comments.author.html
AuthorList(author = list(), ...)
AuthorList(author = list(), ...)
author |
author |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AuthorList(author = c("author1", "author2")) ## End(Not run)
## Not run: AuthorList(author = c("author1", "author2")) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.filters.html
AutoFilter( ref = NULL, filterColumn = list(), sortState = NULL, extLst = NULL, ... )
AutoFilter( ref = NULL, filterColumn = list(), sortState = NULL, extLst = NULL, ... )
ref |
ref |
filterColumn |
filterColumn |
sortState |
sortState |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AutoFilter() ## End(Not run)
## Not run: AutoFilter() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
AutonumberBullet(type = NULL, startAt = NULL, ...)
AutonumberBullet(type = NULL, startAt = NULL, ...)
type |
type |
startAt |
startAt |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AutonumberBullet(type = "hindiNumPeriod", startAt = 1L) ## End(Not run)
## Not run: AutonumberBullet(type = "hindiNumPeriod", startAt = 1L) ## End(Not run)
Naive check to see whether name already exists.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.child.html
avoid_duplicate_name(names, value, ...)
avoid_duplicate_name(names, value, ...)
names |
names |
value |
value |
... |
Additional arguments, i.e. kwargs. |
If name does exist suggest a name using an incrementer Duplicates are case insensitive
An character string.
## Not run: avoid_duplicate_name(names = "name", value = "name") ## End(Not run)
## Not run: avoid_duplicate_name(names = "name", value = "name") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
AxDataSource( numRef = NULL, numLit = NULL, strRef = NULL, strLit = NULL, multiLvlStrRef = NULL, ... )
AxDataSource( numRef = NULL, numLit = NULL, strRef = NULL, strLit = NULL, multiLvlStrRef = NULL, ... )
numRef |
numRef |
numLit |
numLit |
strRef |
strRef |
strLit |
strLit |
multiLvlStrRef |
multiLvlStrRef |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: AxDataSource(numRef = NumRef()) ## End(Not run)
## Not run: AxDataSource(numRef = NumRef()) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
Backdrop(anchor = NULL, norm = NULL, up = NULL, extLst = NULL, ...)
Backdrop(anchor = NULL, norm = NULL, up = NULL, extLst = NULL, ...)
anchor |
anchor |
norm |
norm |
up |
up |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Backdrop( anchor = Point3D(x = 1L, y = 2L, z = 3L), norm = Vector3D(dx = 1L, dy = 2L, dz = 3L), up = Vector3D(dx = 1L, dy = 2L, dz = 3L) ) ## End(Not run)
## Not run: Backdrop( anchor = Point3D(x = 1L, y = 2L, z = 3L), norm = Vector3D(dx = 1L, dy = 2L, dz = 3L), up = Vector3D(dx = 1L, dy = 2L, dz = 3L) ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.surface_chart.html
BandFormat(idx = 0L, spPr = NULL, ...)
BandFormat(idx = 0L, spPr = NULL, ...)
idx |
idx |
spPr |
spPr |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: BandFormat() ## End(Not run)
## Not run: BandFormat() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.surface_chart.html
BandFormatList(bandFmt = list(), ...)
BandFormatList(bandFmt = list(), ...)
bandFmt |
bandFmt |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: BandFormatList() ## End(Not run)
## Not run: BandFormatList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.bar_chart.html
BarChart(gapWidth = 150L, overlap = NULL, serLines = NULL, extLst = NULL, ...)
BarChart(gapWidth = 150L, overlap = NULL, serLines = NULL, extLst = NULL, ...)
gapWidth |
gapWidth |
overlap |
overlap |
serLines |
serLines |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: BarChart() ## End(Not run)
## Not run: BarChart() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.bar_chart.html
BarChart3D( gapWidth = 150L, gapDepth = 150L, shape = NULL, serLines = NULL, extLst = NULL, ... )
BarChart3D( gapWidth = 150L, gapDepth = 150L, shape = NULL, serLines = NULL, extLst = NULL, ... )
gapWidth |
gapWidth |
gapDepth |
gapDepth |
shape |
shape |
serLines |
serLines |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: BarChart3D() ## End(Not run)
## Not run: BarChart3D() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
Bevel(w = NULL, h = NULL, prst = NULL, ...)
Bevel(w = NULL, h = NULL, prst = NULL, ...)
w |
w integer |
h |
h integer |
prst |
prst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Bevel(w = 1L, h = 1L) ## End(Not run)
## Not run: Bevel(w = 1L, h = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
BiLevelEffect(thresh = NULL, ...)
BiLevelEffect(thresh = NULL, ...)
thresh |
thresh |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: BiLevelEffect(thresh = 1L) ## End(Not run)
## Not run: BiLevelEffect(thresh = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.fill.html
Blip( cstate = NULL, embed = NULL, link = NULL, noGrp = NULL, noSelect = NULL, noRot = NULL, noChangeAspect = NULL, noMove = NULL, noResize = NULL, noEditPoints = NULL, noAdjustHandles = NULL, noChangeArrowheads = NULL, noChangeShapeType = NULL, extLst = NULL, alphaBiLevel = NULL, alphaCeiling = NULL, alphaFloor = NULL, alphaInv = NULL, alphaMod = NULL, alphaModFix = NULL, alphaRepl = NULL, biLevel = NULL, blur = NULL, clrChange = NULL, clrRepl = NULL, duotone = NULL, fillOverlay = NULL, grayscl = NULL, hsl = NULL, lum = NULL, tint = NULL, ... )
Blip( cstate = NULL, embed = NULL, link = NULL, noGrp = NULL, noSelect = NULL, noRot = NULL, noChangeAspect = NULL, noMove = NULL, noResize = NULL, noEditPoints = NULL, noAdjustHandles = NULL, noChangeArrowheads = NULL, noChangeShapeType = NULL, extLst = NULL, alphaBiLevel = NULL, alphaCeiling = NULL, alphaFloor = NULL, alphaInv = NULL, alphaMod = NULL, alphaModFix = NULL, alphaRepl = NULL, biLevel = NULL, blur = NULL, clrChange = NULL, clrRepl = NULL, duotone = NULL, fillOverlay = NULL, grayscl = NULL, hsl = NULL, lum = NULL, tint = NULL, ... )
cstate |
cstate |
embed |
embed |
link |
link |
noGrp |
noGrp |
noSelect |
noSelect |
noRot |
noRot |
noChangeAspect |
noChangeAspect |
noMove |
noMove |
noResize |
noResize |
noEditPoints |
noEditPoints |
noAdjustHandles |
noAdjustHandles |
noChangeArrowheads |
noChangeArrowheads |
noChangeShapeType |
noChangeShapeType |
extLst |
extLst |
alphaBiLevel |
alphaBiLevel |
alphaCeiling |
alphaCeiling |
alphaFloor |
alphaFloor |
alphaInv |
alphaInv |
alphaMod |
alphaMod |
alphaModFix |
alphaModFix |
alphaRepl |
alphaRepl |
biLevel |
biLevel |
blur |
blur |
clrChange |
clrChange |
clrRepl |
clrRepl |
duotone |
duotone |
fillOverlay |
fillOverlay |
grayscl |
grayscl |
hsl |
hsl |
lum |
lum |
tint |
tint |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Blip() ## End(Not run)
## Not run: Blip() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.fill.html
BlipFillProperties( dpi = NULL, rotWithShape = NULL, blip = NULL, tile = NULL, srcRect = NULL, ... )
BlipFillProperties( dpi = NULL, rotWithShape = NULL, blip = NULL, tile = NULL, srcRect = NULL, ... )
dpi |
dpi |
rotWithShape |
rotWithShape |
blip |
blip |
tile |
tile |
srcRect |
srcRect |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: BlipFillProperties() ## End(Not run)
## Not run: BlipFillProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
BlurEffect(rad = NULL, grow = NULL, ...)
BlurEffect(rad = NULL, grow = NULL, ...)
rad |
rad |
grow |
grow |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: BlurEffect(rad = 0.5) ## End(Not run)
## Not run: BlurEffect(rad = 0.5) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.views.html
BookView( visibility = "visible", minimized = FALSE, showHorizontalScroll = TRUE, showVerticalScroll = TRUE, showSheetTabs = TRUE, xWindow = NULL, yWindow = NULL, windowWidth = NULL, windowHeight = NULL, tabRatio = 600L, firstSheet = 0L, activeTab = 0L, autoFilterDateGrouping = TRUE, extLst = NULL, ... )
BookView( visibility = "visible", minimized = FALSE, showHorizontalScroll = TRUE, showVerticalScroll = TRUE, showSheetTabs = TRUE, xWindow = NULL, yWindow = NULL, windowWidth = NULL, windowHeight = NULL, tabRatio = 600L, firstSheet = 0L, activeTab = 0L, autoFilterDateGrouping = TRUE, extLst = NULL, ... )
visibility |
visibility |
minimized |
minimized |
showHorizontalScroll |
showHorizontalScroll |
showVerticalScroll |
showVerticalScroll |
showSheetTabs |
showSheetTabs |
xWindow |
xWindow |
yWindow |
yWindow |
windowWidth |
windowWidth |
windowHeight |
windowHeight |
tabRatio |
tabRatio |
firstSheet |
firstSheet |
activeTab |
activeTab |
autoFilterDateGrouping |
autoFilterDateGrouping |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: BookView() ## End(Not run)
## Not run: BookView() ## End(Not run)
Border positioning for use in styles.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.borders.html
Border( left = NULL, right = NULL, top = NULL, bottom = NULL, diagonal = NULL, diagonal_direction = NULL, vertical = NULL, horizontal = NULL, diagonalUp = FALSE, diagonalDown = FALSE, outline = TRUE, start = NULL, end = NULL, ... )
Border( left = NULL, right = NULL, top = NULL, bottom = NULL, diagonal = NULL, diagonal_direction = NULL, vertical = NULL, horizontal = NULL, diagonalUp = FALSE, diagonalDown = FALSE, outline = TRUE, start = NULL, end = NULL, ... )
left |
left |
right |
right |
top |
top |
bottom |
bottom |
diagonal |
diagonal |
diagonal_direction |
diagonal_direction |
vertical |
vertical |
horizontal |
horizontal |
diagonalUp |
diagonalUp |
diagonalDown |
diagonalDown |
outline |
outline |
start |
start |
end |
end |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Border() ## End(Not run)
## Not run: Border() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.pagebreak.html
Break(id = 0L, min = 0L, max = 16383L, man = TRUE, pt = NULL, ...)
Break(id = 0L, min = 0L, max = 16383L, man = TRUE, pt = NULL, ...)
id |
id |
min |
min |
max |
max |
man |
man |
pt |
pt |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Break() ## End(Not run)
## Not run: Break() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.bubble_chart.html
BubbleChart( varyColors = NULL, ser = list(), dLbls = NULL, bubble3D = NULL, bubbleScale = NULL, showNegBubbles = NULL, sizeRepresents = NULL, extLst = NULL, ... )
BubbleChart( varyColors = NULL, ser = list(), dLbls = NULL, bubble3D = NULL, bubbleScale = NULL, showNegBubbles = NULL, sizeRepresents = NULL, extLst = NULL, ... )
varyColors |
varyColors |
ser |
ser |
dLbls |
dLbls |
bubble3D |
bubble3D |
bubbleScale |
bubbleScale |
showNegBubbles |
showNegBubbles |
sizeRepresents |
sizeRepresents |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: BubbleChart() ## End(Not run)
## Not run: BubbleChart() ## End(Not run)
Return one of the standard format codes by index.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.numbers.html
builtin_format_code(index, ...)
builtin_format_code(index, ...)
index |
index |
... |
Additional arguments, i.e. kwargs. |
An character string.
## Not run: builtin_format_code(index = 2L) ## End(Not run)
## Not run: builtin_format_code(index = 2L) ## End(Not run)
Return the id of a standard style.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.numbers.html
builtin_format_id(fmt, ...)
builtin_format_id(fmt, ...)
fmt |
fmt |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: builtin_format_id(fmt = NULL) ## End(Not run)
## Not run: builtin_format_id(fmt = NULL) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.properties.html
CalcProperties( calcId = 124519L, calcMode = NULL, fullCalcOnLoad = TRUE, refMode = NULL, iterate = NULL, iterateCount = NULL, iterateDelta = NULL, fullPrecision = NULL, calcCompleted = NULL, calcOnSave = NULL, concurrentCalc = NULL, concurrentManualCount = NULL, forceFullCalc = NULL, ... )
CalcProperties( calcId = 124519L, calcMode = NULL, fullCalcOnLoad = TRUE, refMode = NULL, iterate = NULL, iterateCount = NULL, iterateDelta = NULL, fullPrecision = NULL, calcCompleted = NULL, calcOnSave = NULL, concurrentCalc = NULL, concurrentManualCount = NULL, forceFullCalc = NULL, ... )
calcId |
calcId |
calcMode |
calcMode |
fullCalcOnLoad |
fullCalcOnLoad |
refMode |
refMode |
iterate |
iterate |
iterateCount |
iterateCount |
iterateDelta |
iterateDelta |
fullPrecision |
fullPrecision |
calcCompleted |
calcCompleted |
calcOnSave |
calcOnSave |
concurrentCalc |
concurrentCalc |
concurrentManualCount |
concurrentManualCount |
forceFullCalc |
forceFullCalc |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CalcProperties() ## End(Not run)
## Not run: CalcProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
Camera(prst = NULL, fov = NULL, zoom = NULL, rot = NULL, ...)
Camera(prst = NULL, fov = NULL, zoom = NULL, rot = NULL, ...)
prst |
prst |
fov |
fov |
zoom |
zoom |
rot |
rot |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Camera(prst = "perspectiveLeft") ## End(Not run)
## Not run: Camera(prst = "perspectiveLeft") ## End(Not run)
Explicitly convert a string to a numeric value
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.inference.html
cast_numeric(value, ...)
cast_numeric(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
An numeric value.
## Not run: cast_numeric(value = "1") ## End(Not run)
## Not run: cast_numeric(value = "1") ## End(Not run)
Explicitly convert a string to numeric value and format as a percentage
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.inference.html
cast_percentage(value, ...)
cast_percentage(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
An numeric value.
## Not run: cast_percentage(value = "50%") ## End(Not run)
## Not run: cast_percentage(value = "50%") ## End(Not run)
Explicitly convert a string to a number and format as datetime or time
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.inference.html
cast_time(value, ...)
cast_time(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
An Python "datetime.time" object.
## Not run: cast_time(value = "00:00:01") ## End(Not run)
## Not run: cast_time(value = "00:00:01") ## End(Not run)
Describes cell associated properties.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.cell.html
Cell( worksheet, row = NULL, column = NULL, value = NULL, style_array = NULL, ... )
Cell( worksheet, row = NULL, column = NULL, value = NULL, style_array = NULL, ... )
worksheet |
worksheet |
row |
row |
column |
column |
value |
value |
style_array |
style_array |
... |
Additional arguments, i.e. kwargs. |
Properties of interest include style, type, value, and address.
An openpyxl Python object.
## Not run: wb <- Workbook() ws <- ws$active Cell(worksheet = ws, row = 1L, column = 1L) ## End(Not run)
## Not run: wb <- Workbook() ws <- ws$active Cell(worksheet = ws, row = 1L, column = 1L) ## End(Not run)
Conditional formatting rule based on cell contents.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
CellIsRule( operator = NULL, formula = list(), stopIfTrue = NULL, font = NULL, border = NULL, fill = NULL, ... )
CellIsRule( operator = NULL, formula = list(), stopIfTrue = NULL, font = NULL, border = NULL, fill = NULL, ... )
operator |
operator |
formula |
formula as list |
stopIfTrue |
stopIfTrue |
font |
font |
border |
border |
fill |
fill |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CellIsRule(operator = "equal") ## End(Not run)
## Not run: CellIsRule(operator = "equal") ## End(Not run)
Represents a range in a sheet: title and coordinates.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.cell_range.html
CellRange( range_string = NULL, min_col = NULL, min_row = NULL, max_col = NULL, max_row = NULL, title = NULL, ... )
CellRange( range_string = NULL, min_col = NULL, min_row = NULL, max_col = NULL, max_row = NULL, title = NULL, ... )
range_string |
range_string |
min_col |
min_col |
min_row |
min_row |
max_col |
max_col |
max_row |
max_row |
title |
title |
... |
Additional arguments, i.e. kwargs. |
This object is used to perform operations on ranges, like: - shift, expand or shrink - union/intersection with another sheet range, We can check whether a range is: - equal or not equal to another, - disjoint of another, - contained in another. We can get: - the size of a range. - the range bounds (vertices) - the coordinates, - the string representation,
An openpyxl Python object.
## Not run: CellRange(range_string = "A1") ## End(Not run)
## Not run: CellRange(range_string = "A1") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.smart_tag.html
CellSmartTag( cellSmartTagPr = list(), type = NULL, deleted = FALSE, xmlBased = FALSE, ... )
CellSmartTag( cellSmartTagPr = list(), type = NULL, deleted = FALSE, xmlBased = FALSE, ... )
cellSmartTagPr |
cellSmartTagPr |
type |
type |
deleted |
deleted |
xmlBased |
xmlBased |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CellSmartTag(type = 1L) ## End(Not run)
## Not run: CellSmartTag(type = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.smart_tag.html
CellSmartTagPr(key = NULL, val = NULL, ...)
CellSmartTagPr(key = NULL, val = NULL, ...)
key |
key |
val |
val |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CellSmartTagPr(key = "key", val = "val") ## End(Not run)
## Not run: CellSmartTagPr(key = "key", val = "val") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.smart_tag.html
CellSmartTags(cellSmartTag = list(), r = NULL, ...)
CellSmartTags(cellSmartTag = list(), r = NULL, ...)
cellSmartTag |
cellSmartTag |
r |
r |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CellSmartTags(cellSmartTag = list(), r = "r") ## End(Not run)
## Not run: CellSmartTags(cellSmartTag = list(), r = "r") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.cell_style.html
CellStyle( numFmtId = 0L, fontId = 0L, fillId = 0L, borderId = 0L, xfId = NULL, quotePrefix = NULL, pivotButton = NULL, applyNumberFormat = NULL, applyFont = NULL, applyFill = NULL, applyBorder = NULL, applyAlignment = NULL, applyProtection = NULL, alignment = NULL, protection = NULL, extLst = NULL, ... )
CellStyle( numFmtId = 0L, fontId = 0L, fillId = 0L, borderId = 0L, xfId = NULL, quotePrefix = NULL, pivotButton = NULL, applyNumberFormat = NULL, applyFont = NULL, applyFill = NULL, applyBorder = NULL, applyAlignment = NULL, applyProtection = NULL, alignment = NULL, protection = NULL, extLst = NULL, ... )
numFmtId |
numFmtId |
fontId |
fontId |
fillId |
fillId |
borderId |
borderId |
xfId |
xfId |
quotePrefix |
quotePrefix |
pivotButton |
pivotButton |
applyNumberFormat |
applyNumberFormat |
applyFont |
applyFont |
applyFill |
applyFill |
applyBorder |
applyBorder |
applyAlignment |
applyAlignment |
applyProtection |
applyProtection |
alignment |
alignment |
protection |
protection |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CellStyle() ## End(Not run)
## Not run: CellStyle() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.cell_style.html
CellStyleList(count = NULL, xf = list(), ...)
CellStyleList(count = NULL, xf = list(), ...)
count |
count |
xf |
xf |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CellStyleList() ## End(Not run)
## Not run: CellStyleList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.cell_watch.html
CellWatch(r = NULL, ...)
CellWatch(r = NULL, ...)
r |
r |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CellWatch(r = "r") ## End(Not run)
## Not run: CellWatch(r = "r") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.cell_watch.html
CellWatches(cellWatch = list(), ...)
CellWatches(cellWatch = list(), ...)
cellWatch |
cellWatch |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CellWatches() ## End(Not run)
## Not run: CellWatches() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
CharacterProperties( kumimoji = NULL, lang = NULL, altLang = NULL, sz = NULL, b = NULL, i = NULL, u = NULL, strike = NULL, kern = NULL, cap = NULL, spc = NULL, normalizeH = NULL, baseline = NULL, noProof = NULL, dirty = NULL, err = NULL, smtClean = NULL, smtId = NULL, bmk = NULL, ln = NULL, highlight = NULL, latin = NULL, ea = NULL, cs = NULL, sym = NULL, hlinkClick = NULL, hlinkMouseOver = NULL, rtl = NULL, extLst = NULL, noFill = NULL, solidFill = NULL, gradFill = NULL, blipFill = NULL, pattFill = NULL, grpFill = NULL, effectLst = NULL, effectDag = NULL, uLnTx = NULL, uLn = NULL, uFillTx = NULL, uFill = NULL, ... )
CharacterProperties( kumimoji = NULL, lang = NULL, altLang = NULL, sz = NULL, b = NULL, i = NULL, u = NULL, strike = NULL, kern = NULL, cap = NULL, spc = NULL, normalizeH = NULL, baseline = NULL, noProof = NULL, dirty = NULL, err = NULL, smtClean = NULL, smtId = NULL, bmk = NULL, ln = NULL, highlight = NULL, latin = NULL, ea = NULL, cs = NULL, sym = NULL, hlinkClick = NULL, hlinkMouseOver = NULL, rtl = NULL, extLst = NULL, noFill = NULL, solidFill = NULL, gradFill = NULL, blipFill = NULL, pattFill = NULL, grpFill = NULL, effectLst = NULL, effectDag = NULL, uLnTx = NULL, uLn = NULL, uFillTx = NULL, uFill = NULL, ... )
kumimoji |
kumimoji |
lang |
lang |
altLang |
altLang |
sz |
sz |
b |
b |
i |
i |
u |
u |
strike |
strike |
kern |
kern |
cap |
cap |
spc |
spc |
normalizeH |
normalizeH |
baseline |
baseline |
noProof |
noProof |
dirty |
dirty |
err |
err |
smtClean |
smtClean |
smtId |
smtId |
bmk |
bmk |
ln |
ln |
highlight |
highlight |
latin |
latin |
ea |
ea |
cs |
cs |
sym |
sym |
hlinkClick |
hlinkClick |
hlinkMouseOver |
hlinkMouseOver |
rtl |
rtl |
extLst |
extLst |
noFill |
noFill |
solidFill |
solidFill |
gradFill |
gradFill |
blipFill |
blipFill |
pattFill |
pattFill |
grpFill |
grpFill |
effectLst |
effectLst |
effectDag |
effectDag |
uLnTx |
uLnTx |
uLn |
uLn |
uFillTx |
uFillTx |
uFill |
uFill |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CharacterProperties() ## End(Not run)
## Not run: CharacterProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.chartspace.html
ChartContainer( title = NULL, autoTitleDeleted = NULL, pivotFmts = list(), view3D = NULL, floor = NULL, sideWall = NULL, backWall = NULL, plotArea = NULL, legend = NULL, plotVisOnly = TRUE, dispBlanksAs = "gap", showDLblsOverMax = NULL, extLst = NULL, ... )
ChartContainer( title = NULL, autoTitleDeleted = NULL, pivotFmts = list(), view3D = NULL, floor = NULL, sideWall = NULL, backWall = NULL, plotArea = NULL, legend = NULL, plotVisOnly = TRUE, dispBlanksAs = "gap", showDLblsOverMax = NULL, extLst = NULL, ... )
title |
title |
autoTitleDeleted |
autoTitleDeleted |
pivotFmts |
pivotFmts |
view3D |
view3D |
floor |
floor |
sideWall |
sideWall |
backWall |
backWall |
plotArea |
plotArea |
legend |
legend |
plotVisOnly |
plotVisOnly |
dispBlanksAs |
dispBlanksAs |
showDLblsOverMax |
showDLblsOverMax |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ChartContainer() ## End(Not run)
## Not run: ChartContainer() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.axis.html
ChartLines(spPr = NULL, ...)
ChartLines(spPr = NULL, ...)
spPr |
spPr |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ChartLines() ## End(Not run)
## Not run: ChartLines() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.relation.html
ChartRelation(id, ...)
ChartRelation(id, ...)
id |
id |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ChartRelation(id = "id") ## End(Not run)
## Not run: ChartRelation(id = "id") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chartsheet.chartsheet.html
Chartsheet( sheetPr = NULL, sheetViews = NULL, sheetProtection = NULL, customSheetViews = NULL, pageMargins = NULL, pageSetup = NULL, headerFooter = NULL, drawing = NULL, drawingHF = NULL, picture = NULL, webPublishItems = NULL, extLst = NULL, parent = NULL, title = "", sheet_state = "visible", ... )
Chartsheet( sheetPr = NULL, sheetViews = NULL, sheetProtection = NULL, customSheetViews = NULL, pageMargins = NULL, pageSetup = NULL, headerFooter = NULL, drawing = NULL, drawingHF = NULL, picture = NULL, webPublishItems = NULL, extLst = NULL, parent = NULL, title = "", sheet_state = "visible", ... )
sheetPr |
sheetPr |
sheetViews |
sheetViews |
sheetProtection |
sheetProtection |
customSheetViews |
customSheetViews |
pageMargins |
pageMargins |
pageSetup |
pageSetup |
headerFooter |
headerFooter |
drawing |
drawing |
drawingHF |
drawingHF |
picture |
picture |
webPublishItems |
webPublishItems |
extLst |
extLst |
parent |
parent |
title |
title |
sheet_state |
sheet_state |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Chartsheet() ## End(Not run)
## Not run: Chartsheet() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chartsheet.properties.html
ChartsheetProperties(published = NULL, codeName = NULL, tabColor = NULL, ...)
ChartsheetProperties(published = NULL, codeName = NULL, tabColor = NULL, ...)
published |
published |
codeName |
codeName |
tabColor |
tabColor |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ChartsheetProperties() ## End(Not run)
## Not run: ChartsheetProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chartsheet.protection.html
ChartsheetProtection( content = NULL, objects = NULL, hashValue = NULL, spinCount = NULL, saltValue = NULL, algorithmName = NULL, password = NULL, ... )
ChartsheetProtection( content = NULL, objects = NULL, hashValue = NULL, spinCount = NULL, saltValue = NULL, algorithmName = NULL, password = NULL, ... )
content |
content |
objects |
objects |
hashValue |
hashValue |
spinCount |
spinCount |
saltValue |
saltValue |
algorithmName |
algorithmName |
password |
password |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ChartsheetProtection() ## End(Not run)
## Not run: ChartsheetProtection() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chartsheet.views.html
ChartsheetView( tabSelected = NULL, zoomScale = NULL, workbookViewId = 0L, zoomToFit = TRUE, extLst = NULL, ... )
ChartsheetView( tabSelected = NULL, zoomScale = NULL, workbookViewId = 0L, zoomToFit = TRUE, extLst = NULL, ... )
tabSelected |
tabSelected |
zoomScale |
zoomScale |
workbookViewId |
workbookViewId |
zoomToFit |
zoomToFit |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ChartsheetView() ## End(Not run)
## Not run: ChartsheetView() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chartsheet.views.html
ChartsheetViewList(sheetView = NULL, extLst = NULL, ...)
ChartsheetViewList(sheetView = NULL, extLst = NULL, ...)
sheetView |
sheetView |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ChartsheetViewList() ## End(Not run)
## Not run: ChartsheetViewList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.chartspace.html
ChartSpace( date1904 = NULL, lang = NULL, roundedCorners = NULL, style = NULL, clrMapOvr = NULL, pivotSource = NULL, protection = NULL, chart = NULL, spPr = NULL, txPr = NULL, externalData = NULL, printSettings = NULL, userShapes = NULL, extLst = NULL, ... )
ChartSpace( date1904 = NULL, lang = NULL, roundedCorners = NULL, style = NULL, clrMapOvr = NULL, pivotSource = NULL, protection = NULL, chart = NULL, spPr = NULL, txPr = NULL, externalData = NULL, printSettings = NULL, userShapes = NULL, extLst = NULL, ... )
date1904 |
date1904 |
lang |
lang |
roundedCorners |
roundedCorners |
style |
style |
clrMapOvr |
clrMapOvr |
pivotSource |
pivotSource |
protection |
protection |
chart |
chart |
spPr |
spPr |
txPr |
txPr |
externalData |
externalData |
printSettings |
printSettings |
userShapes |
userShapes |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ChartSpace(chart = ChartContainer()) ## End(Not run)
## Not run: ChartSpace(chart = ChartContainer()) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
cm_to_dxa(value, ...)
cm_to_dxa(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
A numeric value.
## Not run: cm_to_dxa(value = 1L) ## End(Not run)
## Not run: cm_to_dxa(value = 1L) ## End(Not run)
1 cm = 360000 EMUs
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
cm_to_EMU(value, ...)
cm_to_EMU(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
A numeric value.
## Not run: cm_to_EMU(value = 1L) ## End(Not run)
## Not run: cm_to_EMU(value = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.pagebreak.html
ColBreak(count = NULL, manualBreakCount = NULL, brk = list(), ...)
ColBreak(count = NULL, manualBreakCount = NULL, brk = list(), ...)
count |
count |
manualBreakCount |
manualBreakCount |
brk |
brk |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ColBreak() ## End(Not run)
## Not run: ColBreak() ## End(Not run)
Named colors for use in styles.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.colors.html
Color( rgb = "00000000", indexed = NULL, auto = NULL, theme = NULL, tint = 0, index = NULL, type = "rgb", ... )
Color( rgb = "00000000", indexed = NULL, auto = NULL, theme = NULL, tint = 0, index = NULL, type = "rgb", ... )
rgb |
rgb |
indexed |
indexed |
auto |
auto |
theme |
theme |
tint |
tint |
index |
index |
type |
type |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Color() ## End(Not run)
## Not run: Color() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
ColorChangeEffect(useA = NULL, clrFrom = NULL, clrTo = NULL, ...)
ColorChangeEffect(useA = NULL, clrFrom = NULL, clrTo = NULL, ...)
useA |
useA |
clrFrom |
clrFrom |
clrTo |
clrTo |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: # issue using xlcharts::Color() function as built from # class 'openpyxl.styles.colors.Color' while # ColorChangeEffect() arguments require 'openpyxl.drawing.effect.Color' openpyxl <- reticulate::import("openpyxl") ColorChangeEffect( clrFrom = openpyxl$drawing$effect$Color(), clrTo = openpyxl$drawing$effect$Color() ) ## End(Not run)
## Not run: # issue using xlcharts::Color() function as built from # class 'openpyxl.styles.colors.Color' while # ColorChangeEffect() arguments require 'openpyxl.drawing.effect.Color' openpyxl <- reticulate::import("openpyxl") ColorChangeEffect( clrFrom = openpyxl$drawing$effect$Color(), clrTo = openpyxl$drawing$effect$Color() ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.colors.html
ColorChoice( scrgbClr = NULL, srgbClr = NULL, hslClr = NULL, sysClr = NULL, schemeClr = NULL, prstClr = NULL, ... )
ColorChoice( scrgbClr = NULL, srgbClr = NULL, hslClr = NULL, sysClr = NULL, schemeClr = NULL, prstClr = NULL, ... )
scrgbClr |
scrgbClr |
srgbClr |
srgbClr |
hslClr |
hslClr |
sysClr |
sysClr |
schemeClr |
schemeClr |
prstClr |
prstClr |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ColorChoice() ## End(Not run)
## Not run: ColorChoice() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.filters.html
ColorFilter(dxfId = NULL, cellColor = NULL, ...)
ColorFilter(dxfId = NULL, cellColor = NULL, ...)
dxfId |
dxfId |
cellColor |
cellColor |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ColorFilter() ## End(Not run)
## Not run: ColorFilter() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.colors.html
ColorList(indexedColors = list(), mruColors = list(), ...)
ColorList(indexedColors = list(), mruColors = list(), ...)
indexedColors |
indexedColors |
mruColors |
mruColors |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ColorList() ## End(Not run)
## Not run: ColorList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.colors.html
ColorMapping( bg1 = "lt1", tx1 = "dk1", bg2 = "lt2", tx2 = "dk2", accent1 = "accent1", accent2 = "accent2", accent3 = "accent3", accent4 = "accent4", accent5 = "accent5", accent6 = "accent6", hlink = "hlink", folHlink = "folHlink", extLst = NULL, ... )
ColorMapping( bg1 = "lt1", tx1 = "dk1", bg2 = "lt2", tx2 = "dk2", accent1 = "accent1", accent2 = "accent2", accent3 = "accent3", accent4 = "accent4", accent5 = "accent5", accent6 = "accent6", hlink = "hlink", folHlink = "folHlink", extLst = NULL, ... )
bg1 |
bg1 |
tx1 |
tx1 |
bg2 |
bg2 |
tx2 |
tx2 |
accent1 |
accent1 |
accent2 |
accent2 |
accent3 |
accent3 |
accent4 |
accent4 |
accent5 |
accent5 |
accent6 |
accent6 |
hlink |
hlink |
folHlink |
folHlink |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ColorMapping() ## End(Not run)
## Not run: ColorMapping() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
ColorReplaceEffect(...)
ColorReplaceEffect(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ColorReplaceEffect() ## End(Not run)
## Not run: ColorReplaceEffect() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
ColorScale(cfvo = NULL, color = NULL, ...)
ColorScale(cfvo = NULL, color = NULL, ...)
cfvo |
cfvo |
color |
color |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: first <- FormatObject(type = 'min') last <- FormatObject(type = 'max') # colors match the format objects: colors <- list(Color('AA0000'), Color('00AA00')) cs2 <- ColorScale(cfvo = list(first, last), color = colors) ## End(Not run)
## Not run: first <- FormatObject(type = 'min') last <- FormatObject(type = 'max') # colors match the format objects: colors <- list(Color('AA0000'), Color('00AA00')) cs2 <- ColorScale(cfvo = list(first, last), color = colors) ## End(Not run)
Backwards compatibility
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
ColorScaleRule( start_type = NULL, start_value = NULL, start_color = NULL, mid_type = NULL, mid_value = NULL, mid_color = NULL, end_type = NULL, end_value = NULL, end_color = NULL, ... )
ColorScaleRule( start_type = NULL, start_value = NULL, start_color = NULL, mid_type = NULL, mid_value = NULL, mid_color = NULL, end_type = NULL, end_value = NULL, end_color = NULL, ... )
start_type |
start_type |
start_value |
start_value |
start_color |
start_color |
mid_type |
mid_type |
mid_value |
mid_value |
mid_color |
mid_color |
end_type |
end_type |
end_value |
end_value |
end_color |
end_color |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ColorScaleRule( start_type='percentile', start_value=10, start_color='FFAA0000', mid_type='percentile', mid_value=50, mid_color='FF0000AA', end_type='percentile', end_value=90, end_color='FF00AA00') ## End(Not run)
## Not run: ColorScaleRule( start_type='percentile', start_value=10, start_color='FFAA0000', mid_type='percentile', mid_value=50, mid_color='FF0000AA', end_type='percentile', end_value=90, end_color='FF00AA00') ## End(Not run)
Represent a range of at least one column
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.print_settings.html
ColRange(range_string = NULL, min_col = NULL, max_col = NULL, ...)
ColRange(range_string = NULL, min_col = NULL, max_col = NULL, ...)
range_string |
range_string |
min_col |
min_col |
max_col |
max_col |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ColRange(range_string = "A:B") ## End(Not run)
## Not run: ColRange(range_string = "A:B") ## End(Not run)
Convert a column name into a numerical index
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.cell.html
column_index_from_string(str_col, ...)
column_index_from_string(str_col, ...)
str_col |
str_col |
... |
Additional arguments, i.e. kwargs. |
('A' -> 1)
A numeric value.
## Not run: column_index_from_string(str_col = "A") ## End(Not run)
## Not run: column_index_from_string(str_col = "A") ## End(Not run)
Information about the display properties of a column.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.dimensions.html
ColumnDimension( worksheet, index = "A", width = 13L, bestFit = FALSE, hidden = FALSE, outlineLevel = 0L, outline_level = NULL, collapsed = FALSE, style = NULL, min = NULL, max = NULL, customWidth = FALSE, visible = NULL, auto_size = NULL, ... )
ColumnDimension( worksheet, index = "A", width = 13L, bestFit = FALSE, hidden = FALSE, outlineLevel = 0L, outline_level = NULL, collapsed = FALSE, style = NULL, min = NULL, max = NULL, customWidth = FALSE, visible = NULL, auto_size = NULL, ... )
worksheet |
worksheet |
index |
index |
width |
width |
bestFit |
bestFit |
hidden |
|
outlineLevel |
outlineLevel |
outline_level |
outline_level |
collapsed |
collapsed |
style |
style |
min |
min |
max |
max |
customWidth |
customWidth |
visible |
visible |
auto_size |
auto_size |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: wb <- Workbook() ws <- wb$active ColumnDimension(worksheet = ws) ## End(Not run)
## Not run: wb <- Workbook() ws <- wb$active ColumnDimension(worksheet = ws) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.comments.comments.html
Comment(text, author, height = 79L, width = 144L, ...)
Comment(text, author, height = 79L, width = 144L, ...)
text |
text |
author |
author |
height |
height |
width |
width |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Comment(text = "text", author = "author") ## End(Not run)
## Not run: Comment(text = "text", author = "author") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.comments.comment_sheet.html
CommentRecord( ref = "", authorId = 0L, guid = NULL, shapeId = 0L, text = NULL, commentPr = NULL, author = NULL, height = 79L, width = 144L, ... )
CommentRecord( ref = "", authorId = 0L, guid = NULL, shapeId = 0L, text = NULL, commentPr = NULL, author = NULL, height = 79L, width = 144L, ... )
ref |
ref |
authorId |
authorId |
guid |
guid |
shapeId |
shapeId |
text |
text |
commentPr |
commentPr |
author |
author |
height |
height |
width |
width |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CommentRecord() ## End(Not run)
## Not run: CommentRecord() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.comments.comment_sheet.html
CommentSheet(authors = NULL, commentList = list(), extLst = NULL, ...)
CommentSheet(authors = NULL, commentList = list(), extLst = NULL, ...)
authors |
authors |
commentList |
commentList |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CommentSheet( authors = AuthorList(author = c("author1", "author2")) ) ## End(Not run)
## Not run: CommentSheet( authors = AuthorList(author = c("author1", "author2")) ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.formatting.html
ConditionalFormatting( sqref = list(), pivot = NULL, cfRule = list(), extLst = NULL, ... )
ConditionalFormatting( sqref = list(), pivot = NULL, cfRule = list(), extLst = NULL, ... )
sqref |
sqref |
pivot |
pivot |
cfRule |
cfRule |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ConditionalFormatting() ## End(Not run)
## Not run: ConditionalFormatting() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.formatting.html
ConditionalFormattingList(...)
ConditionalFormattingList(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ConditionalFormattingList() ## End(Not run)
## Not run: ConditionalFormattingList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.connector.html
Connection(id = NULL, idx = NULL, ...)
Connection(id = NULL, idx = NULL, ...)
id |
id |
idx |
idx |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Connection(id = 1L, idx = 1L) ## End(Not run)
## Not run: Connection(id = 1L, idx = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
ConnectionSite(ang = NULL, pos = NULL, ...)
ConnectionSite(ang = NULL, pos = NULL, ...)
ang |
ang |
pos |
pos |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ConnectionSite(ang = 1.5, pos = AdjPoint2D(x = 1L, y = 2L)) ## End(Not run)
## Not run: ConnectionSite(ang = 1.5, pos = AdjPoint2D(x = 1L, y = 2L)) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
ConnectionSiteList(cxn = NULL, ...)
ConnectionSiteList(cxn = NULL, ...)
cxn |
cxn |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ConnectionSiteList() ## End(Not run)
## Not run: ConnectionSiteList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.connector.html
ConnectorLocking(extLst = NULL, ...)
ConnectorLocking(extLst = NULL, ...)
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ConnectorLocking() ## End(Not run)
## Not run: ConnectorLocking() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.controls.html
Control(controlPr = NULL, shapeId = NULL, name = NULL, ...)
Control(controlPr = NULL, shapeId = NULL, name = NULL, ...)
controlPr |
controlPr |
shapeId |
shapeId |
name |
name |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
An openpyxl Python object.
## Not run: Control( controlPr = ControlProperty( anchor = ObjectAnchor(from = AnchorMarker(), to = AnchorMarker()) ), shapeId = 1L ) ## End(Not run)
## Not run: Control( controlPr = ControlProperty( anchor = ObjectAnchor(from = AnchorMarker(), to = AnchorMarker()) ), shapeId = 1L ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.controls.html
ControlProperty( anchor = NULL, locked = TRUE, defaultSize = TRUE, print = TRUE, disabled = FALSE, recalcAlways = FALSE, uiObject = FALSE, autoFill = TRUE, autoLine = TRUE, autoPict = TRUE, macro = NULL, altText = NULL, linkedCell = NULL, listFillRange = NULL, cf = "pict", id = NULL, ... )
ControlProperty( anchor = NULL, locked = TRUE, defaultSize = TRUE, print = TRUE, disabled = FALSE, recalcAlways = FALSE, uiObject = FALSE, autoFill = TRUE, autoLine = TRUE, autoPict = TRUE, macro = NULL, altText = NULL, linkedCell = NULL, listFillRange = NULL, cf = "pict", id = NULL, ... )
anchor |
anchor |
locked |
locked |
defaultSize |
defaultSize |
print |
_print |
disabled |
disabled |
recalcAlways |
recalcAlways |
uiObject |
uiObject |
autoFill |
autoFill |
autoLine |
autoLine |
autoPict |
autoPict |
macro |
macro |
altText |
altText |
linkedCell |
linkedCell |
listFillRange |
listFillRange |
cf |
cf |
id |
id |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ControlProperty( anchor = ObjectAnchor(from = AnchorMarker(), to = AnchorMarker()) ) ## End(Not run)
## Not run: ControlProperty( anchor = ObjectAnchor(from = AnchorMarker(), to = AnchorMarker()) ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.controls.html
Controls(control = list(), ...)
Controls(control = list(), ...)
control |
control |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Controls() ## End(Not run)
## Not run: Controls() ## End(Not run)
Convert a coordinate string like 'B12' to a list ('B', 12)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.cell.html
coordinate_from_string(coord_string, ...)
coordinate_from_string(coord_string, ...)
coord_string |
coord_string |
... |
Additional arguments, i.e. kwargs. |
A list.
## Not run: coordinate_from_string(coord_string = "A1") ## End(Not run)
## Not run: coordinate_from_string(coord_string = "A1") ## End(Not run)
Convert an Excel style coordinate to (row, column) list
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.cell.html
coordinate_to_tuple(coordinate, ...)
coordinate_to_tuple(coordinate, ...)
coordinate |
coordinate |
... |
Additional arguments, i.e. kwargs. |
A list.
## Not run: coordinate_to_tuple(coordinate = "A1") ## End(Not run)
## Not run: coordinate_to_tuple(coordinate = "A1") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.filters.html
CustomFilter(operator = NULL, val = NULL, ...)
CustomFilter(operator = NULL, val = NULL, ...)
operator |
operator |
val |
val |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CustomFilter(operator = "equal", val = 1L) ## End(Not run)
## Not run: CustomFilter(operator = "equal", val = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.filters.html
CustomFilters(and = FALSE, customFilter = list(), ...)
CustomFilters(and = FALSE, customFilter = list(), ...)
and |
_and |
customFilter |
customFilter |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CustomFilters() ## End(Not run)
## Not run: CustomFilters() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
CustomGeometry2D( avLst = NULL, gdLst = NULL, ahLst = NULL, cxnLst = NULL, rect = NULL, pathLst = NULL, ... )
CustomGeometry2D( avLst = NULL, gdLst = NULL, ahLst = NULL, cxnLst = NULL, rect = NULL, pathLst = NULL, ... )
avLst |
avLst |
gdLst |
gdLst |
ahLst |
ahLst |
cxnLst |
cxnLst |
rect |
rect |
pathLst |
pathLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CustomGeometry2D(pathLst = Path2DList()) ## End(Not run)
## Not run: CustomGeometry2D(pathLst = Path2DList()) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.custom.html
CustomProperties(customPr = list(), ...)
CustomProperties(customPr = list(), ...)
customPr |
customPr |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CustomProperties() ## End(Not run)
## Not run: CustomProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.custom.html
CustomProperty(name = NULL, ...)
CustomProperty(name = NULL, ...)
name |
name |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CustomProperty(name = "name") ## End(Not run)
## Not run: CustomProperty(name = "name") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.pie_chart.html
CustomSplit(secondPiePt = list(), ...)
CustomSplit(secondPiePt = list(), ...)
secondPiePt |
secondPiePt |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: CustomSplit() ## End(Not run)
## Not run: CustomSplit() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.line.html
DashStop(d = 0L, sp = 0L, ...)
DashStop(d = 0L, sp = 0L, ...)
d |
d |
sp |
sp |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DashStop() ## End(Not run)
## Not run: DashStop() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.line.html
DashStopList(ds = list(), ...)
DashStopList(ds = list(), ...)
ds |
ds |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DashStopList() ## End(Not run)
## Not run: DashStopList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
DataBar( minLength = NULL, maxLength = NULL, showValue = NULL, cfvo = NULL, color = NULL, ... )
DataBar( minLength = NULL, maxLength = NULL, showValue = NULL, cfvo = NULL, color = NULL, ... )
minLength |
minLength |
maxLength |
maxLength |
showValue |
showValue |
cfvo |
cfvo |
color |
color |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: first <- FormatObject(type='min') second <- FormatObject(type='max') DataBar(cfvo = list(first, second), color = "638EC6") ## End(Not run)
## Not run: first <- FormatObject(type='min') second <- FormatObject(type='max') DataBar(cfvo = list(first, second), color = "638EC6") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
DataBarRule( start_type = NULL, start_value = NULL, end_type = NULL, end_value = NULL, color = NULL, showValue = NULL, minLength = NULL, maxLength = NULL, ... )
DataBarRule( start_type = NULL, start_value = NULL, end_type = NULL, end_value = NULL, color = NULL, showValue = NULL, minLength = NULL, maxLength = NULL, ... )
start_type |
start_type |
start_value |
start_value |
end_type |
end_type |
end_value |
end_value |
color |
color |
showValue |
showValue |
minLength |
minLength |
maxLength |
maxLength |
... |
Additional arguments, i.e. kwargs |
An openpyxl Python object.
## Not run: DataBarRule(start_type='percentile', start_value=10, end_type='percentile', end_value='90', color="FF638EC6", showValue= NULL, minLength=NULL, maxLength=NULL) ## End(Not run)
## Not run: DataBarRule(start_type='percentile', start_value=10, end_type='percentile', end_value='90', color="FF638EC6", showValue= NULL, minLength=NULL, maxLength=NULL) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.label.html
DataLabel(idx = 0L, ...)
DataLabel(idx = 0L, ...)
idx |
idx |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DataLabel() ## End(Not run)
## Not run: DataLabel() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.label.html
DataLabelList(dLbl = list(), delete = NULL, ...)
DataLabelList(dLbl = list(), delete = NULL, ...)
dLbl |
dLbl |
delete |
delete |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DataLabelList() ## End(Not run)
## Not run: DataLabelList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.marker.html
DataPoint( idx = NULL, invertIfNegative = NULL, marker = NULL, bubble3D = NULL, explosion = NULL, spPr = NULL, pictureOptions = NULL, extLst = NULL, ... )
DataPoint( idx = NULL, invertIfNegative = NULL, marker = NULL, bubble3D = NULL, explosion = NULL, spPr = NULL, pictureOptions = NULL, extLst = NULL, ... )
idx |
idx |
invertIfNegative |
invertIfNegative |
marker |
marker |
bubble3D |
bubble3D |
explosion |
explosion |
spPr |
spPr |
pictureOptions |
pictureOptions |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DataPoint(idx = 1L) ## End(Not run)
## Not run: DataPoint(idx = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.plotarea.html
DataTable( showHorzBorder = NULL, showVertBorder = NULL, showOutline = NULL, showKeys = NULL, spPr = NULL, txPr = NULL, extLst = NULL, ... )
DataTable( showHorzBorder = NULL, showVertBorder = NULL, showOutline = NULL, showKeys = NULL, spPr = NULL, txPr = NULL, extLst = NULL, ... )
showHorzBorder |
showHorzBorder |
showVertBorder |
showVertBorder |
showOutline |
showOutline |
showKeys |
showKeys |
spPr |
spPr |
txPr |
txPr |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DataTable() ## End(Not run)
## Not run: DataTable() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.formula.html
DataTableFormula( ref, ca = FALSE, dt2D = FALSE, dtr = FALSE, r1 = NULL, r2 = NULL, del1 = FALSE, del2 = FALSE, ... )
DataTableFormula( ref, ca = FALSE, dt2D = FALSE, dtr = FALSE, r1 = NULL, r2 = NULL, del1 = FALSE, del2 = FALSE, ... )
ref |
ref |
ca |
ca |
dt2D |
dt2D |
dtr |
dtr |
r1 |
r1 |
r2 |
r2 |
del1 |
del1 |
del2 |
del2 |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DataTableFormula(ref = "A1") ## End(Not run)
## Not run: DataTableFormula(ref = "A1") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.datavalidation.html
DataValidation( type = NULL, formula1 = NULL, formula2 = NULL, showErrorMessage = FALSE, showInputMessage = FALSE, showDropDown = FALSE, allowBlank = FALSE, sqref = list(), promptTitle = NULL, errorStyle = NULL, error = NULL, prompt = NULL, errorTitle = NULL, imeMode = NULL, operator = NULL, allow_blank = FALSE, ... )
DataValidation( type = NULL, formula1 = NULL, formula2 = NULL, showErrorMessage = FALSE, showInputMessage = FALSE, showDropDown = FALSE, allowBlank = FALSE, sqref = list(), promptTitle = NULL, errorStyle = NULL, error = NULL, prompt = NULL, errorTitle = NULL, imeMode = NULL, operator = NULL, allow_blank = FALSE, ... )
type |
type |
formula1 |
formula1 |
formula2 |
formula2 |
showErrorMessage |
showErrorMessage |
showInputMessage |
showInputMessage |
showDropDown |
showDropDown |
allowBlank |
allowBlank |
sqref |
sqref |
promptTitle |
promptTitle |
errorStyle |
errorStyle |
error |
error |
prompt |
prompt |
errorTitle |
errorTitle |
imeMode |
imeMode |
operator |
operator |
allow_blank |
allow_blank |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DataValidation() ## End(Not run)
## Not run: DataValidation() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.datavalidation.html
DataValidationList( disablePrompts = NULL, xWindow = NULL, yWindow = NULL, count = NULL, dataValidation = list(), ... )
DataValidationList( disablePrompts = NULL, xWindow = NULL, yWindow = NULL, count = NULL, dataValidation = list(), ... )
disablePrompts |
disablePrompts |
xWindow |
xWindow |
yWindow |
yWindow |
count |
count |
dataValidation |
dataValidation |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DataValidationList() ## End(Not run)
## Not run: DataValidationList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.axis.html
DateAxis( auto = NULL, lblOffset = NULL, baseTimeUnit = NULL, majorUnit = NULL, majorTimeUnit = NULL, minorUnit = NULL, minorTimeUnit = NULL, extLst = NULL, ... )
DateAxis( auto = NULL, lblOffset = NULL, baseTimeUnit = NULL, majorUnit = NULL, majorTimeUnit = NULL, minorUnit = NULL, minorTimeUnit = NULL, extLst = NULL, ... )
auto |
auto |
lblOffset |
lblOffset |
baseTimeUnit |
baseTimeUnit |
majorUnit |
majorUnit |
majorTimeUnit |
majorTimeUnit |
minorUnit |
minorUnit |
minorTimeUnit |
minorTimeUnit |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DateAxis() ## End(Not run)
## Not run: DateAxis() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.filters.html
DateGroupItem( year = NULL, month = NULL, day = NULL, hour = NULL, minute = NULL, second = NULL, dateTimeGrouping = NULL, ... )
DateGroupItem( year = NULL, month = NULL, day = NULL, hour = NULL, minute = NULL, second = NULL, dateTimeGrouping = NULL, ... )
year |
year |
month |
month |
day |
day |
hour |
hour |
minute |
minute |
second |
second |
dateTimeGrouping |
dateTimeGrouping |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DateGroupItem(year = 2024, dateTimeGrouping = "year") ## End(Not run)
## Not run: DateGroupItem(year = 2024, dateTimeGrouping = "year") ## End(Not run)
https://docs.python.org/3/library/copy.html
deepcopy(x, memo = NULL, nil = c())
deepcopy(x, memo = NULL, nil = c())
x |
x |
memo |
memo |
nil |
_nil |
An openpyxl Python object.
## Not run: wb <- Workbook() deepcopy(wb) ## End(Not run)
## Not run: wb <- Workbook() deepcopy(wb) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.defined_name.html
DefinedName( name = NULL, comment = NULL, customMenu = NULL, description = NULL, help = NULL, statusBar = NULL, localSheetId = NULL, hidden = NULL, vbProcedure = NULL, xlm = NULL, functionGroupId = NULL, shortcutKey = NULL, publishToServer = NULL, workbookParameter = NULL, attr_text = NULL, ... )
DefinedName( name = NULL, comment = NULL, customMenu = NULL, description = NULL, help = NULL, statusBar = NULL, localSheetId = NULL, hidden = NULL, vbProcedure = NULL, xlm = NULL, functionGroupId = NULL, shortcutKey = NULL, publishToServer = NULL, workbookParameter = NULL, attr_text = NULL, ... )
name |
name |
comment |
comment |
customMenu |
customMenu |
description |
description |
help |
help |
statusBar |
statusBar |
localSheetId |
localSheetId |
hidden |
|
vbProcedure |
vbProcedure |
xlm |
xlm |
functionGroupId |
functionGroupId |
shortcutKey |
shortcutKey |
publishToServer |
publishToServer |
workbookParameter |
workbookParameter |
attr_text |
attr_text |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DefinedName(name = "name") ## End(Not run)
## Not run: DefinedName(name = "name") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.defined_name.html
DefinedNameList(definedName = list(), ...)
DefinedNameList(definedName = list(), ...)
definedName |
definedName |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DefinedNameList() ## End(Not run)
## Not run: DefinedNameList() ## End(Not run)
1 degree = 60000 angles
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
degrees_to_angle(value, ...)
degrees_to_angle(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
A numeric value.
## Not run: degrees_to_angle(value = 1) ## End(Not run)
## Not run: degrees_to_angle(value = 1) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.differential.html
DifferentialStyle( font = NULL, numFmt = NULL, fill = NULL, alignment = NULL, border = NULL, protection = NULL, extLst = NULL, ... )
DifferentialStyle( font = NULL, numFmt = NULL, fill = NULL, alignment = NULL, border = NULL, protection = NULL, extLst = NULL, ... )
font |
font |
numFmt |
numFmt |
fill |
fill |
alignment |
alignment |
border |
border |
protection |
protection |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DifferentialStyle() ## End(Not run)
## Not run: DifferentialStyle() ## End(Not run)
Dedupable container for differential styles.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.differential.html
DifferentialStyleList(dxf = list(), count = NULL, ...)
DifferentialStyleList(dxf = list(), count = NULL, ...)
dxf |
dxf |
count |
count |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DifferentialStyleList() ## End(Not run)
## Not run: DifferentialStyleList() ## End(Not run)
Information about the display properties of a row or column.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.dimensions.html
Dimension( index, hidden, outlineLevel, collapsed, worksheet, visible = TRUE, style = NULL, ... )
Dimension( index, hidden, outlineLevel, collapsed, worksheet, visible = TRUE, style = NULL, ... )
index |
index |
hidden |
|
outlineLevel |
outlineLevel |
collapsed |
collapsed |
worksheet |
worksheet |
visible |
visible |
style |
style |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Dimension(index = 1L, hidden = NULL, outlineLevel = NULL, collapsed = NULL, worksheet = NULL) ## End(Not run)
## Not run: Dimension(index = 1L, hidden = NULL, outlineLevel = NULL, collapsed = NULL, worksheet = NULL) ## End(Not run)
Allow columns to be grouped
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.dimensions.html
DimensionHolder(worksheet, reference = "index", default_factory = NULL, ...)
DimensionHolder(worksheet, reference = "index", default_factory = NULL, ...)
worksheet |
worksheet |
reference |
reference |
default_factory |
default_factory |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: wb <- Workbook() ws <- wb$active DimensionHolder(worksheet = ws) ## End(Not run)
## Not run: wb <- Workbook() ws <- wb$active DimensionHolder(worksheet = ws) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.axis.html
DisplayUnitsLabel(layout = NULL, tx = NULL, spPr = NULL, txPr = NULL, ...)
DisplayUnitsLabel(layout = NULL, tx = NULL, spPr = NULL, txPr = NULL, ...)
layout |
layout |
tx |
tx |
spPr |
spPr |
txPr |
txPr |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DisplayUnitsLabel() ## End(Not run)
## Not run: DisplayUnitsLabel() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.axis.html
DisplayUnitsLabelList(...)
DisplayUnitsLabelList(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DisplayUnitsLabelList() ## End(Not run)
## Not run: DisplayUnitsLabelList() ## End(Not run)
High-level properties of the document.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.packaging.core.html
DocumentProperties( category = NULL, contentStatus = NULL, keywords = NULL, lastModifiedBy = NULL, lastPrinted = NULL, revision = NULL, version = NULL, created = NULL, creator = "openpyxl", description = NULL, identifier = NULL, language = NULL, modified = NULL, subject = NULL, title = NULL, ... )
DocumentProperties( category = NULL, contentStatus = NULL, keywords = NULL, lastModifiedBy = NULL, lastPrinted = NULL, revision = NULL, version = NULL, created = NULL, creator = "openpyxl", description = NULL, identifier = NULL, language = NULL, modified = NULL, subject = NULL, title = NULL, ... )
category |
category |
contentStatus |
contentStatus |
keywords |
keywords |
lastModifiedBy |
lastModifiedBy |
lastPrinted |
lastPrinted |
revision |
revision |
version |
version |
created |
created |
creator |
creator |
description |
description |
identifier |
identifier |
language |
language |
modified |
modified |
subject |
subject |
title |
title |
... |
Additional arguments, i.e. kwargs. |
Defined in ECMA-376 Par2 Annex D
An openpyxl Python object.
## Not run: DocumentProperties() ## End(Not run)
## Not run: DocumentProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.protection.html
DocumentSecurity( workbookPassword = NULL, workbookPasswordCharacterSet = NULL, revisionsPassword = NULL, revisionsPasswordCharacterSet = NULL, lockStructure = NULL, lockWindows = NULL, lockRevision = NULL, revisionsAlgorithmName = NULL, revisionsHashValue = NULL, revisionsSaltValue = NULL, revisionsSpinCount = NULL, workbookAlgorithmName = NULL, workbookHashValue = NULL, workbookSaltValue = NULL, workbookSpinCount = NULL, ... )
DocumentSecurity( workbookPassword = NULL, workbookPasswordCharacterSet = NULL, revisionsPassword = NULL, revisionsPasswordCharacterSet = NULL, lockStructure = NULL, lockWindows = NULL, lockRevision = NULL, revisionsAlgorithmName = NULL, revisionsHashValue = NULL, revisionsSaltValue = NULL, revisionsSpinCount = NULL, workbookAlgorithmName = NULL, workbookHashValue = NULL, workbookSaltValue = NULL, workbookSpinCount = NULL, ... )
workbookPassword |
workbookPassword |
workbookPasswordCharacterSet |
workbookPasswordCharacterSet |
revisionsPassword |
revisionsPassword |
revisionsPasswordCharacterSet |
revisionsPasswordCharacterSet |
lockStructure |
lockStructure |
lockWindows |
lockWindows |
lockRevision |
lockRevision |
revisionsAlgorithmName |
revisionsAlgorithmName |
revisionsHashValue |
revisionsHashValue |
revisionsSaltValue |
revisionsSaltValue |
revisionsSpinCount |
revisionsSpinCount |
workbookAlgorithmName |
workbookAlgorithmName |
workbookHashValue |
workbookHashValue |
workbookSaltValue |
workbookSaltValue |
workbookSpinCount |
workbookSpinCount |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DocumentSecurity() ## End(Not run)
## Not run: DocumentSecurity() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.pie_chart.html
DoughnutChart(firstSliceAng = 0L, holeSize = 10L, extLst = NULL, ...)
DoughnutChart(firstSliceAng = 0L, holeSize = 10L, extLst = NULL, ...)
firstSliceAng |
firstSliceAng |
holeSize |
holeSize |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DoughnutChart() ## End(Not run)
## Not run: DoughnutChart() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.drawing.html
Drawing(id = NULL, ...)
Drawing(id = NULL, ...)
id |
id |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Drawing() ## End(Not run)
## Not run: Drawing() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chartsheet.relation.html
DrawingHF( id = NULL, lho = NULL, lhe = NULL, lhf = NULL, cho = NULL, che = NULL, chf = NULL, rho = NULL, rhe = NULL, rhf = NULL, lfo = NULL, lfe = NULL, lff = NULL, cfo = NULL, cfe = NULL, cff = NULL, rfo = NULL, rfe = NULL, rff = NULL, ... )
DrawingHF( id = NULL, lho = NULL, lhe = NULL, lhf = NULL, cho = NULL, che = NULL, chf = NULL, rho = NULL, rhe = NULL, rhf = NULL, lfo = NULL, lfe = NULL, lff = NULL, cfo = NULL, cfe = NULL, cff = NULL, rfo = NULL, rfe = NULL, rff = NULL, ... )
id |
id |
lho |
lho |
lhe |
lhe |
lhf |
lhf |
cho |
cho |
che |
che |
chf |
chf |
rho |
rho |
rhe |
rhe |
rhf |
rhf |
lfo |
lfo |
lfe |
lfe |
lff |
lff |
cfo |
cfo |
cfe |
cfe |
cff |
cff |
rfo |
rfo |
rfe |
rfe |
rff |
rff |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DrawingHF() ## End(Not run)
## Not run: DrawingHF() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.reference.html
DummyWorksheet(title, ...)
DummyWorksheet(title, ...)
title |
title |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DummyWorksheet(title = "title") ## End(Not run)
## Not run: DummyWorksheet(title = "title") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
DuotoneEffect(...)
DuotoneEffect(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DuotoneEffect() ## End(Not run)
## Not run: DuotoneEffect() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
dxa_to_cm(value, ...)
dxa_to_cm(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: dxa_to_cm(value = 1L) ## End(Not run)
## Not run: dxa_to_cm(value = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.filters.html
DynamicFilter( type = NULL, val = NULL, valIso = NULL, maxVal = NULL, maxValIso = NULL, ... )
DynamicFilter( type = NULL, val = NULL, valIso = NULL, maxVal = NULL, maxValIso = NULL, ... )
type |
type |
val |
val |
valIso |
valIso |
maxVal |
maxVal |
maxValIso |
maxValIso |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: DynamicFilter(type = "thisWeek") ## End(Not run)
## Not run: DynamicFilter(type = "thisWeek") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
EffectContainer(type = NULL, name = NULL, ...)
EffectContainer(type = NULL, name = NULL, ...)
type |
type |
name |
name |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: EffectContainer(type = "sib") ## End(Not run)
## Not run: EffectContainer(type = "sib") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
EffectList( blur = NULL, fillOverlay = NULL, glow = NULL, innerShdw = NULL, outerShdw = NULL, prstShdw = NULL, reflection = NULL, softEdge = NULL, ... )
EffectList( blur = NULL, fillOverlay = NULL, glow = NULL, innerShdw = NULL, outerShdw = NULL, prstShdw = NULL, reflection = NULL, softEdge = NULL, ... )
blur |
blur |
fillOverlay |
fillOverlay |
glow |
glow |
innerShdw |
innerShdw |
outerShdw |
outerShdw |
prstShdw |
prstShdw |
reflection |
reflection |
softEdge |
softEdge |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: EffectList() ## End(Not run)
## Not run: EffectList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
EmbeddedWAVAudioFile(name = NULL, ...)
EmbeddedWAVAudioFile(name = NULL, ...)
name |
name |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: EmbeddedWAVAudioFile() ## End(Not run)
## Not run: EmbeddedWAVAudioFile() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.read_only.html
EmptyCell(...)
EmptyCell(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: EmptyCell() ## End(Not run)
## Not run: EmptyCell() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
EMU_to_cm(value, ...)
EMU_to_cm(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: EMU_to_cm(value = 100L) ## End(Not run)
## Not run: EMU_to_cm(value = 100L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
EMU_to_inch(value, ...)
EMU_to_inch(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: EMU_to_inch(value = 100L) ## End(Not run)
## Not run: EMU_to_inch(value = 100L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
EMU_to_pixels(value, ...)
EMU_to_pixels(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: EMU_to_pixels(value = 10000L) ## End(Not run)
## Not run: EMU_to_pixels(value = 10000L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.error_bar.html
ErrorBars( errDir = NULL, errBarType = "both", errValType = "fixedVal", noEndCap = NULL, plus = NULL, minus = NULL, val = NULL, spPr = NULL, extLst = NULL, ... )
ErrorBars( errDir = NULL, errBarType = "both", errValType = "fixedVal", noEndCap = NULL, plus = NULL, minus = NULL, val = NULL, spPr = NULL, extLst = NULL, ... )
errDir |
errDir |
errBarType |
errBarType |
errValType |
errValType |
noEndCap |
noEndCap |
plus |
plus |
minus |
minus |
val |
val |
spPr |
spPr |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ErrorBars() ## End(Not run)
## Not run: ErrorBars() ## End(Not run)
Read an Excel package and dispatch the contents to the relevant modules
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.reader.excel.html
ExcelReader( fn, read_only = FALSE, keep_vba = FALSE, data_only = FALSE, keep_links = TRUE, rich_text = FALSE, ... )
ExcelReader( fn, read_only = FALSE, keep_vba = FALSE, data_only = FALSE, keep_links = TRUE, rich_text = FALSE, ... )
fn |
fn |
read_only |
read_only |
keep_vba |
keep_vba |
data_only |
data_only |
keep_links |
keep_links |
rich_text |
rich_text |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: tmp <- write_xlsx(list(mysheet = iris)) ExcelReader(fn = tmp) ## End(Not run)
## Not run: tmp <- write_xlsx(list(mysheet = iris)) ExcelReader(fn = tmp) ## End(Not run)
Write a workbook object to an Excel file.
https://openpyxl.readthedocs.io/en/latest/api/openpyxl.writer.excel.html
ExcelWriter(workbook, archive, ...)
ExcelWriter(workbook, archive, ...)
workbook |
workbook |
archive |
archive |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: wb <- Workbook() ExcelWriter(workbook = wb, archive = wb) ## End(Not run)
## Not run: wb <- Workbook() ExcelWriter(workbook = wb, archive = wb) ## End(Not run)
Expand cell ranges to a sequence of addresses.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.datavalidation.html
expand_cell_ranges(range_string, ...)
expand_cell_ranges(range_string, ...)
range_string |
range_string |
... |
Additional arguments, i.e. kwargs. |
Reverse of collapse_cell_addresses Eg. converts "A1:A2 B1:B2" to (A1, A2, B1, B2)
An Python builtin object.
## Not run: expand_cell_ranges(range_string = "A1:A2") ## End(Not run)
## Not run: expand_cell_ranges(range_string = "A1:A2") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.errors.html
Extension(uri = NULL, ...)
Extension(uri = NULL, ...)
uri |
uri |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Extension() ## End(Not run)
## Not run: Extension() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.descriptors.excel.html
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.errors.html
ExtensionList(ext = list(), ...)
ExtensionList(ext = list(), ...)
ext |
ext |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ExtensionList() ## End(Not run)
## Not run: ExtensionList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.external_link.external.html
ExternalBook( sheetNames = NULL, definedNames = list(), sheetDataSet = NULL, id = NULL, ... )
ExternalBook( sheetNames = NULL, definedNames = list(), sheetDataSet = NULL, id = NULL, ... )
sheetNames |
sheetNames |
definedNames |
definedNames |
sheetDataSet |
sheetDataSet |
id |
id |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ExternalBook() ## End(Not run)
## Not run: ExternalBook() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.external_link.external.html
ExternalCell(r = NULL, t = NULL, vm = NULL, v = NULL, ...)
ExternalCell(r = NULL, t = NULL, vm = NULL, v = NULL, ...)
r |
r |
t |
t |
vm |
vm |
v |
v |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ExternalCell(r = "r") ## End(Not run)
## Not run: ExternalCell(r = "r") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.chartspace.html
ExternalData(autoUpdate = NULL, id = NULL, ...)
ExternalData(autoUpdate = NULL, id = NULL, ...)
autoUpdate |
autoUpdate |
id |
id |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ExternalData(id = "id") ## End(Not run)
## Not run: ExternalData(id = "id") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.external_link.external.html
ExternalDefinedName(name = NULL, refersTo = NULL, sheetId = NULL, ...)
ExternalDefinedName(name = NULL, refersTo = NULL, sheetId = NULL, ...)
name |
name |
refersTo |
refersTo |
sheetId |
sheetId |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ExternalDefinedName(name = "name") ## End(Not run)
## Not run: ExternalDefinedName(name = "name") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.external_link.external.html
ExternalLink( externalBook = NULL, ddeLink = NULL, oleLink = NULL, extLst = NULL, ... )
ExternalLink( externalBook = NULL, ddeLink = NULL, oleLink = NULL, extLst = NULL, ... )
externalBook |
externalBook |
ddeLink |
ddeLink |
oleLink |
oleLink |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ExternalLink() ## End(Not run)
## Not run: ExternalLink() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.external_reference.html
ExternalReference(id, ...)
ExternalReference(id, ...)
id |
id |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ExternalReference(id = "id") ## End(Not run)
## Not run: ExternalReference(id = "id") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.external_link.external.html
ExternalSheetDataSet(sheetData = NULL, ...)
ExternalSheetDataSet(sheetData = NULL, ...)
sheetData |
sheetData |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ExternalSheetDataSet(sheetData = list()) ## End(Not run)
## Not run: ExternalSheetDataSet(sheetData = list()) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.external_link.external.html
ExternalSheetNames(sheetName = list(), ...)
ExternalSheetNames(sheetName = list(), ...)
sheetName |
sheetName |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ExternalSheetNames() ## End(Not run)
## Not run: ExternalSheetNames() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.protection.html
FileSharing( readOnlyRecommended = NULL, userName = NULL, reservationPassword = NULL, algorithmName = NULL, hashValue = NULL, saltValue = NULL, spinCount = NULL, ... )
FileSharing( readOnlyRecommended = NULL, userName = NULL, reservationPassword = NULL, algorithmName = NULL, hashValue = NULL, saltValue = NULL, spinCount = NULL, ... )
readOnlyRecommended |
readOnlyRecommended |
userName |
userName |
reservationPassword |
reservationPassword |
algorithmName |
algorithmName |
hashValue |
hashValue |
saltValue |
saltValue |
spinCount |
spinCount |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: FileSharing() ## End(Not run)
## Not run: FileSharing() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.properties.html
FileVersion( appName = NULL, lastEdited = NULL, lowestEdited = NULL, rupBuild = NULL, codeName = NULL, ... )
FileVersion( appName = NULL, lastEdited = NULL, lowestEdited = NULL, rupBuild = NULL, codeName = NULL, ... )
appName |
appName |
lastEdited |
lastEdited |
lowestEdited |
lowestEdited |
rupBuild |
rupBuild |
codeName |
codeName |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: FileVersion() ## End(Not run)
## Not run: FileVersion() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.fills.html
Fill(...)
Fill(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Fill() ## End(Not run)
## Not run: Fill() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
FillOverlayEffect(blend = NULL, ...)
FillOverlayEffect(blend = NULL, ...)
blend |
blend |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: FillOverlayEffect(blend = "darken") ## End(Not run)
## Not run: FillOverlayEffect(blend = "darken") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.filters.html
FilterColumn( colId = NULL, hiddenButton = FALSE, showButton = TRUE, filters = NULL, top10 = NULL, customFilters = NULL, dynamicFilter = NULL, colorFilter = NULL, iconFilter = NULL, extLst = NULL, blank = NULL, vals = NULL, ... )
FilterColumn( colId = NULL, hiddenButton = FALSE, showButton = TRUE, filters = NULL, top10 = NULL, customFilters = NULL, dynamicFilter = NULL, colorFilter = NULL, iconFilter = NULL, extLst = NULL, blank = NULL, vals = NULL, ... )
colId |
colId |
hiddenButton |
|
showButton |
showButton |
filters |
filters |
top10 |
top10 |
customFilters |
customFilters |
dynamicFilter |
dynamicFilter |
colorFilter |
colorFilter |
iconFilter |
iconFilter |
extLst |
extLst |
blank |
blank |
vals |
vals |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: FilterColumn(colId = 1L) ## End(Not run)
## Not run: FilterColumn(colId = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.filters.html
Filters( blank = NULL, calendarType = NULL, filter = list(), dateGroupItem = list(), ... )
Filters( blank = NULL, calendarType = NULL, filter = list(), dateGroupItem = list(), ... )
blank |
blank |
calendarType |
calendarType |
filter |
filter |
dateGroupItem |
dateGroupItem |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Filters() ## End(Not run)
## Not run: Filters() ## End(Not run)
Font options used in styles.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.fonts.html
Font( name = NULL, sz = NULL, b = NULL, i = NULL, charset = NULL, u = NULL, strike = NULL, color = NULL, scheme = NULL, family = NULL, size = NULL, bold = NULL, italic = NULL, strikethrough = NULL, underline = NULL, vertAlign = NULL, outline = NULL, shadow = NULL, condense = NULL, extend = NULL, ... )
Font( name = NULL, sz = NULL, b = NULL, i = NULL, charset = NULL, u = NULL, strike = NULL, color = NULL, scheme = NULL, family = NULL, size = NULL, bold = NULL, italic = NULL, strikethrough = NULL, underline = NULL, vertAlign = NULL, outline = NULL, shadow = NULL, condense = NULL, extend = NULL, ... )
name |
name |
sz |
sz |
b |
b |
i |
i |
charset |
charset |
u |
u |
strike |
strike |
color |
color |
scheme |
scheme |
family |
family |
size |
size |
bold |
bold |
italic |
italic |
strikethrough |
strikethrough |
underline |
underline |
vertAlign |
vertAlign |
outline |
outline |
shadow |
shadow |
condense |
condense |
extend |
extend |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Font() ## End(Not run)
## Not run: Font() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
FontReference(idx = NULL, ...)
FontReference(idx = NULL, ...)
idx |
idx |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: FontReference() ## End(Not run)
## Not run: FontReference() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
FormatObject(type, val = NULL, gte = NULL, extLst = NULL, ...)
FormatObject(type, val = NULL, gte = NULL, extLst = NULL, ...)
type |
type |
val |
val |
gte |
gte |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs |
An openpyxl Python object.
## Not run: FormatObject(type = "num") ## End(Not run)
## Not run: FormatObject(type = "num") ## End(Not run)
Conditional formatting with custom differential style
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
FormulaRule( formula = NULL, stopIfTrue = NULL, font = NULL, border = NULL, fill = NULL, ... )
FormulaRule( formula = NULL, stopIfTrue = NULL, font = NULL, border = NULL, fill = NULL, ... )
formula |
formula |
stopIfTrue |
stopIfTrue |
font |
font |
border |
border |
fill |
fill |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: wb <- Workbook() ws <- wb$active ws$conditional_formatting$add('E1:E10', FormulaRule( formula = list('ISBLANK(A1)'), stopIfTrue=TRUE ) ) ## End(Not run)
## Not run: wb <- Workbook() ws <- wb$active ws$conditional_formatting$add('E1:E10', FormulaRule( formula = list('ISBLANK(A1)'), stopIfTrue=TRUE ) ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.function_group.html
FunctionGroup(name = NULL, ...)
FunctionGroup(name = NULL, ...)
name |
name |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: FunctionGroup(name = "name") ## End(Not run)
## Not run: FunctionGroup(name = "name") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.function_group.html
FunctionGroupList(builtInGroupCount = 16L, functionGroup = list(), ...)
FunctionGroupList(builtInGroupCount = 16L, functionGroup = list(), ...)
builtInGroupCount |
builtInGroupCount |
functionGroup |
functionGroup |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: FunctionGroupList() ## End(Not run)
## Not run: FunctionGroupList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
GeomGuide(name = NULL, fmla = NULL, ...)
GeomGuide(name = NULL, fmla = NULL, ...)
name |
name |
fmla |
fmla |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GeomGuide(name = "name", fmla = "fmla") ## End(Not run)
## Not run: GeomGuide(name = "name", fmla = "fmla") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
GeomGuideList(gd = NULL, ...)
GeomGuideList(gd = NULL, ...)
gd |
gd |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GeomGuideList() ## End(Not run)
## Not run: GeomGuideList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
GeomRect(l = NULL, t = NULL, r = NULL, b = NULL, ...)
GeomRect(l = NULL, t = NULL, r = NULL, b = NULL, ...)
l |
l |
t |
t |
r |
r |
b |
b |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GeomRect(l = 1L, t = 1L, 1L, 1L) ## End(Not run)
## Not run: GeomRect(l = 1L, t = 1L, 1L, 1L) ## End(Not run)
Given the start and end columns, return all the columns in the series.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.cell.html
get_column_interval(start, end, ...)
get_column_interval(start, end, ...)
start |
start |
end |
end |
... |
Additional arguments, i.e. kwargs. |
The start and end columns can be either column letters or 1-based indexes.
An openpyxl Python object.
## Not run: get_column_interval(start = "A", end = 3L) ## End(Not run)
## Not run: get_column_interval(start = "A", end = 3L) ## End(Not run)
Convert a column index into a column letter
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.cell.html
get_column_letter(idx, ...)
get_column_letter(idx, ...)
idx |
idx |
... |
Additional arguments, i.e. kwargs. |
(3 -> 'C')
An openpyxl Python object.
## Not run: get_column_letter(idx = 3L) ## End(Not run)
## Not run: get_column_letter(idx = 3L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.cell.html
get_type(t, value, ...)
get_type(t, value, ...)
t |
t |
value |
value |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: get_type(t = "t", value = "value") ## End(Not run)
## Not run: get_type(t = "t", value = "value") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
GlowEffect(rad = NULL, ...)
GlowEffect(rad = NULL, ...)
rad |
rad |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GlowEffect(rad = 1.5) ## End(Not run)
## Not run: GlowEffect(rad = 1.5) ## End(Not run)
Fill areas with gradient
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.fills.html
GradientFill( type = "linear", degree = 0L, left = 0L, right = 0L, top = 0L, bottom = 0L, stop = list(), ... )
GradientFill( type = "linear", degree = 0L, left = 0L, right = 0L, top = 0L, bottom = 0L, stop = list(), ... )
type |
type |
degree |
degree |
left |
left |
right |
right |
top |
top |
bottom |
bottom |
stop |
stop |
... |
Additional arguments, i.e. kwargs. |
Two types of gradient fill are supported: - A type='linear' gradient interpolates colours between a set of specified Stops, across the length of an area. The gradient is left-to-right by default, but this orientation can be modified with the degree attribute. A list of Colors can be provided instead and they will be positioned with equal distance between them. - A type='path' gradient applies a linear gradient from each edge of the area. Attributes top, right, bottom, left specify the extent of fill from the respective borders. Thus top="0.2" will fill the top 20
An openpyxl Python object.
## Not run: GradientFill() ## End(Not run)
## Not run: GradientFill() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.fill.html
GradientFillProperties( flip = NULL, rotWithShape = NULL, gsLst = list(), lin = NULL, path = NULL, tileRect = NULL, ... )
GradientFillProperties( flip = NULL, rotWithShape = NULL, gsLst = list(), lin = NULL, path = NULL, tileRect = NULL, ... )
flip |
flip |
rotWithShape |
rotWithShape |
gsLst |
gsLst |
lin |
lin |
path |
path |
tileRect |
tileRect |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GradientFillProperties() ## End(Not run)
## Not run: GradientFillProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.fill.html
GradientStop( pos = NULL, scrgbClr = NULL, srgbClr = NULL, hslClr = NULL, sysClr = NULL, schemeClr = NULL, prstClr = NULL, ... )
GradientStop( pos = NULL, scrgbClr = NULL, srgbClr = NULL, hslClr = NULL, sysClr = NULL, schemeClr = NULL, prstClr = NULL, ... )
pos |
pos |
scrgbClr |
scrgbClr |
srgbClr |
srgbClr |
hslClr |
hslClr |
sysClr |
sysClr |
schemeClr |
schemeClr |
prstClr |
prstClr |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GradientStop() ## End(Not run)
## Not run: GradientStop() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.shapes.html
GraphicalProperties( bwMode = NULL, xfrm = NULL, noFill = NULL, solidFill = NULL, gradFill = NULL, pattFill = NULL, ln = NULL, scene3d = NULL, custGeom = NULL, prstGeom = NULL, sp3d = NULL, extLst = NULL, ... )
GraphicalProperties( bwMode = NULL, xfrm = NULL, noFill = NULL, solidFill = NULL, gradFill = NULL, pattFill = NULL, ln = NULL, scene3d = NULL, custGeom = NULL, prstGeom = NULL, sp3d = NULL, extLst = NULL, ... )
bwMode |
bwMode |
xfrm |
xfrm |
noFill |
noFill |
solidFill |
solidFill |
gradFill |
gradFill |
pattFill |
pattFill |
ln |
ln |
scene3d |
scene3d |
custGeom |
custGeom |
prstGeom |
prstGeom |
sp3d |
sp3d |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
This element specifies the formatting for the parent chart element. The custGeom, prstGeom, scene3d, and xfrm elements are not supported. The bwMode attribute is not supported. This doesn't leave much. And the element is used in different places.
An openpyxl Python object.
## Not run: GraphicalProperties() ## End(Not run)
## Not run: GraphicalProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.graphic.html
GraphicData( uri = "http://schemas.openxmlformats.org/drawingml/2006/chart", chart = NULL, ... )
GraphicData( uri = "http://schemas.openxmlformats.org/drawingml/2006/chart", chart = NULL, ... )
uri |
uri |
chart |
chart |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GraphicData() ## End(Not run)
## Not run: GraphicData() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.graphic.html
GraphicFrameLocking( noGrp = NULL, noDrilldown = NULL, noSelect = NULL, noChangeAspect = NULL, noMove = NULL, noResize = NULL, extLst = NULL, ... )
GraphicFrameLocking( noGrp = NULL, noDrilldown = NULL, noSelect = NULL, noChangeAspect = NULL, noMove = NULL, noResize = NULL, extLst = NULL, ... )
noGrp |
noGrp |
noDrilldown |
noDrilldown |
noSelect |
noSelect |
noChangeAspect |
noChangeAspect |
noMove |
noMove |
noResize |
noResize |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GraphicFrameLocking() ## End(Not run)
## Not run: GraphicFrameLocking() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.graphic.html
GraphicObject(graphicData = NULL, ...)
GraphicObject(graphicData = NULL, ...)
graphicData |
graphicData |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GraphicObject() ## End(Not run)
## Not run: GraphicObject() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
GrayscaleEffect(...)
GrayscaleEffect(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GrayscaleEffect() ## End(Not run)
## Not run: GrayscaleEffect() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.properties.html
GroupLocking( noGrp = NULL, noUngrp = NULL, noSelect = NULL, noRot = NULL, noChangeAspect = NULL, noChangeArrowheads = NULL, noMove = NULL, noResize = NULL, noEditPoints = NULL, noAdjustHandles = NULL, noChangeShapeType = NULL, extLst = NULL, ... )
GroupLocking( noGrp = NULL, noUngrp = NULL, noSelect = NULL, noRot = NULL, noChangeAspect = NULL, noChangeArrowheads = NULL, noMove = NULL, noResize = NULL, noEditPoints = NULL, noAdjustHandles = NULL, noChangeShapeType = NULL, extLst = NULL, ... )
noGrp |
noGrp |
noUngrp |
noUngrp |
noSelect |
noSelect |
noRot |
noRot |
noChangeAspect |
noChangeAspect |
noChangeArrowheads |
noChangeArrowheads |
noMove |
noMove |
noResize |
noResize |
noEditPoints |
noEditPoints |
noAdjustHandles |
noAdjustHandles |
noChangeShapeType |
noChangeShapeType |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GroupLocking() ## End(Not run)
## Not run: GroupLocking() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.properties.html
GroupShapeProperties( bwMode = NULL, xfrm = NULL, scene3d = NULL, extLst = NULL, ... )
GroupShapeProperties( bwMode = NULL, xfrm = NULL, scene3d = NULL, extLst = NULL, ... )
bwMode |
bwMode |
xfrm |
xfrm |
scene3d |
scene3d |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GroupShapeProperties() ## End(Not run)
## Not run: GroupShapeProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
GroupTransform2D( rot = 0L, flipH = NULL, flipV = NULL, off = NULL, ext = NULL, chOff = NULL, chExt = NULL, ... )
GroupTransform2D( rot = 0L, flipH = NULL, flipV = NULL, off = NULL, ext = NULL, chOff = NULL, chExt = NULL, ... )
rot |
rot |
flipH |
flipH |
flipV |
flipV |
off |
off |
ext |
ext |
chOff |
chOff |
chExt |
chExt |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: GroupTransform2D() ## End(Not run)
## Not run: GroupTransform2D() ## End(Not run)
Create a password hash from a given string for protecting a worksheet
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.protection.html
hash_password(plaintext_password = "", ...)
hash_password(plaintext_password = "", ...)
plaintext_password |
plaintext_password |
... |
Additional arguments, i.e. kwargs. |
only. This will not work for encrypting a workbook. This method is based on the algorithm provided by Daniel Rentz of OpenOffice and the PEAR package Spreadsheet_Excel_Writer by Xavier Noguer <[email protected]>. See also http://blogs.msdn.com/b/ericwhite/archive/2008/02/23/the-legacy-hashing-algorithm-in-open-xml.aspx
An openpyxl Python object.
## Not run: hash_password(plaintext_password = "password") ## End(Not run)
## Not run: hash_password(plaintext_password = "password") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.colors.html
HSLColor(hue = NULL, sat = NULL, lum = NULL, ...)
HSLColor(hue = NULL, sat = NULL, lum = NULL, ...)
hue |
hue |
sat |
sat |
lum |
lum |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: HSLColor(hue = 1L, sat = 1L, lum = 1L) ## End(Not run)
## Not run: HSLColor(hue = 1L, sat = 1L, lum = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
HSLEffect(hue = NULL, sat = NULL, lum = NULL, ...)
HSLEffect(hue = NULL, sat = NULL, lum = NULL, ...)
hue |
hue |
sat |
sat |
lum |
lum |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: HSLEffect(hue = 1L, sat = 1L, lum = 1L) ## End(Not run)
## Not run: HSLEffect(hue = 1L, sat = 1L, lum = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.hyperlink.html
Hyperlink( ref = NULL, location = NULL, tooltip = NULL, display = NULL, id = NULL, target = NULL, ... )
Hyperlink( ref = NULL, location = NULL, tooltip = NULL, display = NULL, id = NULL, target = NULL, ... )
ref |
ref |
location |
location |
tooltip |
tooltip |
display |
display |
id |
id |
target |
target |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Hyperlink(ref = "ref") ## End(Not run)
## Not run: Hyperlink(ref = "ref") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.hyperlink.html
HyperlinkList(hyperlink = list(), ...)
HyperlinkList(hyperlink = list(), ...)
hyperlink |
hyperlink |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: HyperlinkList() ## End(Not run)
## Not run: HyperlinkList() ## End(Not run)
https://docs.python.org/3/library/operator.html#in-place-operators
iadd(a, b)
iadd(a, b)
a |
a |
b |
b |
A Python object.
## Not run: a <- "hello" iadd(a = a, b = " world") ## End(Not run)
## Not run: a <- "hello" iadd(a = a, b = " world") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.filters.html
IconFilter(iconSet = NULL, iconId = NULL, ...)
IconFilter(iconSet = NULL, iconId = NULL, ...)
iconSet |
iconSet |
iconId |
iconId |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: IconFilter(iconSet = "3TrafficLights1") ## End(Not run)
## Not run: IconFilter(iconSet = "3TrafficLights1") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
IconSet( iconSet = NULL, showValue = NULL, percent = NULL, reverse = NULL, cfvo = NULL, ... )
IconSet( iconSet = NULL, showValue = NULL, percent = NULL, reverse = NULL, cfvo = NULL, ... )
iconSet |
iconSet |
showValue |
showValue |
percent |
percent |
reverse |
reverse |
cfvo |
cfvo |
... |
Additional arguments, i.e. kwargs |
An openpyxl Python object.
## Not run: first <- FormatObject(type='percent', val=0) second <- FormatObject(type='percent', val=33) third <- FormatObject(type='percent', val=67) iconset <- IconSet( iconSet = '3TrafficLights1', cfvo = list(first, second, third) ) ## End(Not run)
## Not run: first <- FormatObject(type='percent', val=0) second <- FormatObject(type='percent', val=33) third <- FormatObject(type='percent', val=67) iconset <- IconSet( iconSet = '3TrafficLights1', cfvo = list(first, second, third) ) ## End(Not run)
Convenience function for creating icon set rules
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
IconSetRule( icon_style = NULL, type = NULL, values = NULL, showValue = NULL, percent = NULL, reverse = NULL, ... )
IconSetRule( icon_style = NULL, type = NULL, values = NULL, showValue = NULL, percent = NULL, reverse = NULL, ... )
icon_style |
icon_style |
type |
type |
values |
values |
showValue |
showValue |
percent |
percent |
reverse |
reverse |
... |
Additional arguments, i.e. kwargs |
An openpyxl Python object.
## Not run: IconSetRule('5Arrows', 'percent', list(10, 20, 30, 40, 50), showValue=NULL, percent=NULL, reverse=NULL) ## End(Not run)
## Not run: IconSetRule('5Arrows', 'percent', list(10, 20, 30, 40, 50), showValue=NULL, percent=NULL, reverse=NULL) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.errors.html
IgnoredError( sqref = NULL, evalError = FALSE, twoDigitTextYear = FALSE, numberStoredAsText = FALSE, formula = FALSE, formulaRange = FALSE, unlockedFormula = FALSE, emptyCellReference = FALSE, listDataValidation = FALSE, calculatedColumn = FALSE, ... )
IgnoredError( sqref = NULL, evalError = FALSE, twoDigitTextYear = FALSE, numberStoredAsText = FALSE, formula = FALSE, formulaRange = FALSE, unlockedFormula = FALSE, emptyCellReference = FALSE, listDataValidation = FALSE, calculatedColumn = FALSE, ... )
sqref |
sqref |
evalError |
evalError |
twoDigitTextYear |
twoDigitTextYear |
numberStoredAsText |
numberStoredAsText |
formula |
formula |
formulaRange |
formulaRange |
unlockedFormula |
unlockedFormula |
emptyCellReference |
emptyCellReference |
listDataValidation |
listDataValidation |
calculatedColumn |
calculatedColumn |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: IgnoredError() ## End(Not run)
## Not run: IgnoredError() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.errors.html
IgnoredErrors(ignoredError = list(), extLst = NULL, ...)
IgnoredErrors(ignoredError = list(), extLst = NULL, ...)
ignoredError |
ignoredError |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: IgnoredErrors() ## End(Not run)
## Not run: IgnoredErrors() ## End(Not run)
Image in a spreadsheet. You must have the Pillow Python library installed, which can be installed using 'install_pillow()'.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.image.html
Image(img, ...)
Image(img, ...)
img |
img |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: install_pillow() image_path <- system.file('extdata/logo.png',package='xlcharts') Image(img = image_path) ## End(Not run)
## Not run: install_pillow() image_path <- system.file('extdata/logo.png',package='xlcharts') Image(img = image_path) ## End(Not run)
1 inch = 72 * 20 dxa
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
inch_to_dxa(value, ...)
inch_to_dxa(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
An numeric value.
## Not run: inch_to_dxa(value = 1) ## End(Not run)
## Not run: inch_to_dxa(value = 1) ## End(Not run)
1 inch = 914400 EMUs
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
inch_to_EMU(value, ...)
inch_to_EMU(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
An numeric value.
## Not run: inch_to_EMU(value = 1) ## End(Not run)
## Not run: inch_to_EMU(value = 1) ## End(Not run)
Font for inline text because, yes what you need are different objects with the same elements but different constraints.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.text.html
InlineFont( rFont = NULL, charset = NULL, family = NULL, b = NULL, i = NULL, strike = NULL, outline = NULL, shadow = NULL, condense = NULL, extend = NULL, color = NULL, sz = NULL, u = NULL, vertAlign = NULL, scheme = NULL, ... )
InlineFont( rFont = NULL, charset = NULL, family = NULL, b = NULL, i = NULL, strike = NULL, outline = NULL, shadow = NULL, condense = NULL, extend = NULL, color = NULL, sz = NULL, u = NULL, vertAlign = NULL, scheme = NULL, ... )
rFont |
rFont |
charset |
charset |
family |
family |
b |
b |
i |
i |
strike |
strike |
outline |
outline |
shadow |
shadow |
condense |
condense |
extend |
extend |
color |
color |
sz |
sz |
u |
u |
vertAlign |
vertAlign |
scheme |
scheme |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: InlineFont() ## End(Not run)
## Not run: InlineFont() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
InnerShadowEffect(blurRad = NULL, dist = NULL, dir = NULL, ...)
InnerShadowEffect(blurRad = NULL, dist = NULL, dir = NULL, ...)
blurRad |
blurRad |
dist |
dist |
dir |
dir |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: InnerShadowEffect(blurRad = 1, dist = 1, dir = 1) ## End(Not run)
## Not run: InnerShadowEffect(blurRad = 1, dist = 1, dir = 1) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.scenario.html
InputCells( r = NULL, deleted = FALSE, undone = FALSE, val = NULL, numFmtId = NULL, ... )
InputCells( r = NULL, deleted = FALSE, undone = FALSE, val = NULL, numFmtId = NULL, ... )
r |
r |
deleted |
deleted |
undone |
undone |
val |
val |
numFmtId |
numFmtId |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: InputCells(r = "r", val = "val") ## End(Not run)
## Not run: InputCells(r = "r", val = "val") ## End(Not run)
Install openpyxl Python module
install_openpyxl(method = "auto", conda = "auto")
install_openpyxl(method = "auto", conda = "auto")
method |
method |
conda |
conda |
(Invisible) 'TRUE' if the Conda environment was created successfully.
Module needed to include images in an Excel file.
install_pillow(method = "auto", conda = "auto")
install_pillow(method = "auto", conda = "auto")
method |
method |
conda |
conda |
(Invisible) 'TRUE' if the Conda environment was created successfully.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.layout.html
Layout(manualLayout = NULL, extLst = NULL, ...)
Layout(manualLayout = NULL, extLst = NULL, ...)
manualLayout |
manualLayout |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Layout() ## End(Not run)
## Not run: Layout() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.legend.html
Legend( legendPos = "r", legendEntry = list(), layout = NULL, overlay = NULL, spPr = NULL, txPr = NULL, extLst = NULL, ... )
Legend( legendPos = "r", legendEntry = list(), layout = NULL, overlay = NULL, spPr = NULL, txPr = NULL, extLst = NULL, ... )
legendPos |
legendPos |
legendEntry |
legendEntry |
layout |
layout |
overlay |
overlay |
spPr |
spPr |
txPr |
txPr |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Legend() ## End(Not run)
## Not run: Legend() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.legend.html
LegendEntry(idx = 0, delete = NULL, txPr = NULL, extLst = NULL, ...)
LegendEntry(idx = 0, delete = NULL, txPr = NULL, extLst = NULL, ...)
idx |
idx |
delete |
delete |
txPr |
txPr |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: LegendEntry() ## End(Not run)
## Not run: LegendEntry() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
Level(pt = list(), ...)
Level(pt = list(), ...)
pt |
pt |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Level() ## End(Not run)
## Not run: Level() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
LightRig(rig = NULL, dir = NULL, rot = NULL, ...)
LightRig(rig = NULL, dir = NULL, rot = NULL, ...)
rig |
rig |
dir |
dir |
rot |
rot |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: LightRig(rig = "morning", dir = "t") ## End(Not run)
## Not run: LightRig(rig = "morning", dir = "t") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.fill.html
LinearShadeProperties(ang = NULL, scaled = NULL, ...)
LinearShadeProperties(ang = NULL, scaled = NULL, ...)
ang |
ang |
scaled |
scaled |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: LinearShadeProperties(ang = 30) ## End(Not run)
## Not run: LinearShadeProperties(ang = 30) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
LineBreak(rPr = NULL, ...)
LineBreak(rPr = NULL, ...)
rPr |
rPr |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: LineBreak() ## End(Not run)
## Not run: LineBreak() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.line_chart.html
LineChart( hiLowLines = NULL, upDownBars = NULL, marker = NULL, smooth = NULL, extLst = NULL, ... )
LineChart( hiLowLines = NULL, upDownBars = NULL, marker = NULL, smooth = NULL, extLst = NULL, ... )
hiLowLines |
hiLowLines |
upDownBars |
upDownBars |
marker |
marker |
smooth |
smooth |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: LineChart() ## End(Not run)
## Not run: LineChart() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.line_chart.html
LineChart3D( gapDepth = NULL, hiLowLines = NULL, upDownBars = NULL, marker = NULL, smooth = NULL, ... )
LineChart3D( gapDepth = NULL, hiLowLines = NULL, upDownBars = NULL, marker = NULL, smooth = NULL, ... )
gapDepth |
gapDepth |
hiLowLines |
hiLowLines |
upDownBars |
upDownBars |
marker |
marker |
smooth |
smooth |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: LineChart3D() ## End(Not run)
## Not run: LineChart3D() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.line.html
LineEndProperties(type = NULL, w = NULL, len = NULL, ...)
LineEndProperties(type = NULL, w = NULL, len = NULL, ...)
type |
type |
w |
w |
len |
len |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: LineEndProperties() ## End(Not run)
## Not run: LineEndProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.line.html
LineProperties( w = NULL, cap = NULL, cmpd = NULL, algn = NULL, noFill = NULL, solidFill = NULL, gradFill = NULL, pattFill = NULL, prstDash = NULL, custDash = NULL, round = NULL, bevel = NULL, miter = NULL, headEnd = NULL, tailEnd = NULL, extLst = NULL, ... )
LineProperties( w = NULL, cap = NULL, cmpd = NULL, algn = NULL, noFill = NULL, solidFill = NULL, gradFill = NULL, pattFill = NULL, prstDash = NULL, custDash = NULL, round = NULL, bevel = NULL, miter = NULL, headEnd = NULL, tailEnd = NULL, extLst = NULL, ... )
w |
w |
cap |
cap |
cmpd |
cmpd |
algn |
algn |
noFill |
noFill |
solidFill |
solidFill |
gradFill |
gradFill |
pattFill |
pattFill |
prstDash |
prstDash |
custDash |
custDash |
round |
round |
bevel |
bevel |
miter |
miter |
headEnd |
headEnd |
tailEnd |
tailEnd |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: LineProperties() ## End(Not run)
## Not run: LineProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
ListStyle( defPPr = NULL, lvl1pPr = NULL, lvl2pPr = NULL, lvl3pPr = NULL, lvl4pPr = NULL, lvl5pPr = NULL, lvl6pPr = NULL, lvl7pPr = NULL, lvl8pPr = NULL, lvl9pPr = NULL, extLst = NULL, ... )
ListStyle( defPPr = NULL, lvl1pPr = NULL, lvl2pPr = NULL, lvl3pPr = NULL, lvl4pPr = NULL, lvl5pPr = NULL, lvl6pPr = NULL, lvl7pPr = NULL, lvl8pPr = NULL, lvl9pPr = NULL, extLst = NULL, ... )
defPPr |
defPPr |
lvl1pPr |
lvl1pPr |
lvl2pPr |
lvl2pPr |
lvl3pPr |
lvl3pPr |
lvl4pPr |
lvl4pPr |
lvl5pPr |
lvl5pPr |
lvl6pPr |
lvl6pPr |
lvl7pPr |
lvl7pPr |
lvl8pPr |
lvl8pPr |
lvl9pPr |
lvl9pPr |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ListStyle() ## End(Not run)
## Not run: ListStyle() ## End(Not run)
Open the given filename and return the workbook
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.reader.excel.html
load_workbook( filename, read_only = FALSE, keep_vba = FALSE, data_only = FALSE, keep_links = TRUE, rich_text = FALSE, ... )
load_workbook( filename, read_only = FALSE, keep_vba = FALSE, data_only = FALSE, keep_links = TRUE, rich_text = FALSE, ... )
filename |
filename string or a file-like object open in binary mode c.f., :class:'zipfile.ZipFile' :param read_only: optimised for reading, content cannot be edited |
read_only |
read_only bool |
keep_vba |
keep_vba preserve vba content (this does NOT mean you can use it) |
data_only |
data_only bool |
keep_links |
keep_links whether links to external workbooks should be preserved. The default is TRUE |
rich_text |
rich_text bool :rtype: :class:'openpyxl.workbook.Workbook' .. note:: When using lazy load, all worksheets will be :class:'openpyxl.worksheet.iter_worksheet.IterableWorksheet' and the returned workbook will be read-only. |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: tmp <- write_xlsx(list(mysheet = iris)) load_workbook(filename = tmp) ## End(Not run)
## Not run: tmp <- write_xlsx(list(mysheet = iris)) load_workbook(filename = tmp) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
LuminanceEffect(bright = 0L, contrast = 0L, ...)
LuminanceEffect(bright = 0L, contrast = 0L, ...)
bright |
bright |
contrast |
contrast |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: LuminanceEffect() ## End(Not run)
## Not run: LuminanceEffect() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.layout.html
ManualLayout( layoutTarget = NULL, xMode = NULL, yMode = NULL, wMode = "factor", hMode = "factor", x = NULL, y = NULL, w = NULL, h = NULL, extLst = NULL, ... )
ManualLayout( layoutTarget = NULL, xMode = NULL, yMode = NULL, wMode = "factor", hMode = "factor", x = NULL, y = NULL, w = NULL, h = NULL, extLst = NULL, ... )
layoutTarget |
layoutTarget |
xMode |
xMode |
yMode |
yMode |
wMode |
wMode |
hMode |
hMode |
x |
x |
y |
y |
w |
w |
h |
h |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ManualLayout() ## End(Not run)
## Not run: ManualLayout() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.marker.html
Marker(symbol = NULL, size = NULL, spPr = NULL, extLst = NULL, ...)
Marker(symbol = NULL, size = NULL, spPr = NULL, extLst = NULL, ...)
symbol |
symbol |
size |
size |
spPr |
spPr |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Marker() ## End(Not run)
## Not run: Marker() ## End(Not run)
Represents a range in a sheet: title and coordinates.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.merge.html
MergeCell(ref = NULL, ...)
MergeCell(ref = NULL, ...)
ref |
ref |
... |
Additional arguments, i.e. kwargs. |
This object is used to perform operations on ranges, like: - shift, expand or shrink - union/intersection with another sheet range, We can check whether a range is: - equal or not equal to another, - disjoint of another, - contained in another. We can get: - the size of a range. - the range bounds (vertices) - the coordinates, - the string representation,
An openpyxl Python object.
## Not run: MergeCell(ref = "A1") ## End(Not run)
## Not run: MergeCell(ref = "A1") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.merge.html
MergeCells(count = NULL, mergeCell = list(), ...)
MergeCells(count = NULL, mergeCell = list(), ...)
count |
count |
mergeCell |
mergeCell |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: MergeCells() ## End(Not run)
## Not run: MergeCells() ## End(Not run)
Describes the properties of a cell in a merged cell and helps to display the borders of the merged cell.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.cell.html
MergedCell(worksheet, row = NULL, column = NULL, ...)
MergedCell(worksheet, row = NULL, column = NULL, ...)
worksheet |
worksheet |
row |
row |
column |
column |
... |
Additional arguments, i.e. kwargs. |
The value of a MergedCell is always NULL.
An openpyxl Python object.
## Not run: wb <- Workbook() MergedCell(worksheet = wb$active, row = 1L, column = 1L) ## End(Not run)
## Not run: wb <- Workbook() MergedCell(worksheet = wb$active, row = 1L, column = 1L) ## End(Not run)
MergedCellRange stores the border information of a merged cell in the top
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.merge.html
MergedCellRange(worksheet, coord, ...)
MergedCellRange(worksheet, coord, ...)
worksheet |
worksheet |
coord |
coord |
... |
Additional arguments, i.e. kwargs. |
left cell of the merged cell. The remaining cells in the merged cell are stored as MergedCell objects and get their border information from the upper left cell.
An openpyxl Python object.
## Not run: wb <- Workbook() MergedCellRange(worksheet = wb$active, coord = "A1") ## End(Not run)
## Not run: wb <- Workbook() MergedCellRange(worksheet = wb$active, coord = "A1") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.cell_range.html
MultiCellRange(ranges = list(), ...)
MultiCellRange(ranges = list(), ...)
ranges |
ranges |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: MultiCellRange() ## End(Not run)
## Not run: MultiCellRange() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
MultiLevelStrData(ptCount = NULL, lvl = list(), extLst = NULL, ...)
MultiLevelStrData(ptCount = NULL, lvl = list(), extLst = NULL, ...)
ptCount |
ptCount |
lvl |
lvl |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: MultiLevelStrData() ## End(Not run)
## Not run: MultiLevelStrData() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
MultiLevelStrRef(f = NULL, multiLvlStrCache = NULL, extLst = NULL, ...)
MultiLevelStrRef(f = NULL, multiLvlStrCache = NULL, extLst = NULL, ...)
f |
f |
multiLvlStrCache |
multiLvlStrCache |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: MultiLevelStrRef() ## End(Not run)
## Not run: MultiLevelStrRef() ## End(Not run)
Named and editable styles
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.named_styles.html
NamedStyle( name = "Normal", font = NULL, fill = NULL, border = NULL, alignment = NULL, number_format = NULL, protection = NULL, builtinId = NULL, hidden = FALSE, xfId = NULL, ... )
NamedStyle( name = "Normal", font = NULL, fill = NULL, border = NULL, alignment = NULL, number_format = NULL, protection = NULL, builtinId = NULL, hidden = FALSE, xfId = NULL, ... )
name |
name |
font |
font |
fill |
fill |
border |
border |
alignment |
alignment |
number_format |
number_format |
protection |
protection |
builtinId |
builtinId |
hidden |
|
xfId |
xfId |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NamedStyle() ## End(Not run)
## Not run: NamedStyle() ## End(Not run)
Named styles are editable and can be applied to multiple objects
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.named_styles.html
NamedStyleList(iterable = list(), ...)
NamedStyleList(iterable = list(), ...)
iterable |
iterable |
... |
Additional arguments, i.e. kwargs. |
As only the index is stored in referencing objects the order mus be preserved.
An openpyxl Python object.
## Not run: NamedStyleList() ## End(Not run)
## Not run: NamedStyleList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.descriptors.html
NestedGapAmount(...)
NestedGapAmount(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NestedGapAmount() ## End(Not run)
## Not run: NestedGapAmount() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.descriptors.html
NestedOverlap(...)
NestedOverlap(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NestedOverlap() ## End(Not run)
## Not run: NestedOverlap() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.connector.html
NonVisualConnectorProperties( cxnSpLocks = NULL, stCxn = NULL, endCxn = NULL, extLst = NULL, ... )
NonVisualConnectorProperties( cxnSpLocks = NULL, stCxn = NULL, endCxn = NULL, extLst = NULL, ... )
cxnSpLocks |
cxnSpLocks |
stCxn |
stCxn |
endCxn |
endCxn |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NonVisualConnectorProperties() ## End(Not run)
## Not run: NonVisualConnectorProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.properties.html
NonVisualDrawingShapeProps(spLocks = NULL, txBox = NULL, extLst = NULL, ...)
NonVisualDrawingShapeProps(spLocks = NULL, txBox = NULL, extLst = NULL, ...)
spLocks |
spLocks |
txBox |
txBox |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NonVisualDrawingShapeProps() ## End(Not run)
## Not run: NonVisualDrawingShapeProps() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.graphic.html
NonVisualGraphicFrameProperties(graphicFrameLocks = NULL, extLst = NULL, ...)
NonVisualGraphicFrameProperties(graphicFrameLocks = NULL, extLst = NULL, ...)
graphicFrameLocks |
graphicFrameLocks |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NonVisualGraphicFrameProperties() ## End(Not run)
## Not run: NonVisualGraphicFrameProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.picture.html
NonVisualPictureProperties( preferRelativeResize = NULL, picLocks = NULL, extLst = NULL, ... )
NonVisualPictureProperties( preferRelativeResize = NULL, picLocks = NULL, extLst = NULL, ... )
preferRelativeResize |
preferRelativeResize |
picLocks |
picLocks |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NonVisualPictureProperties() ## End(Not run)
## Not run: NonVisualPictureProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
NumData(formatCode = NULL, ptCount = NULL, pt = list(), extLst = NULL, ...)
NumData(formatCode = NULL, ptCount = NULL, pt = list(), extLst = NULL, ...)
formatCode |
formatCode |
ptCount |
ptCount |
pt |
pt |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NumData() ## End(Not run)
## Not run: NumData() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
NumDataSource(numRef = NULL, numLit = NULL, ...)
NumDataSource(numRef = NULL, numLit = NULL, ...)
numRef |
numRef |
numLit |
numLit |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NumDataSource() ## End(Not run)
## Not run: NumDataSource() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.axis.html
NumericAxis( crossBetween = NULL, majorUnit = NULL, minorUnit = NULL, dispUnits = NULL, extLst = NULL, ... )
NumericAxis( crossBetween = NULL, majorUnit = NULL, minorUnit = NULL, dispUnits = NULL, extLst = NULL, ... )
crossBetween |
crossBetween |
majorUnit |
majorUnit |
minorUnit |
minorUnit |
dispUnits |
dispUnits |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NumericAxis() ## End(Not run)
## Not run: NumericAxis() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
NumFmt(formatCode = NULL, sourceLinked = FALSE, ...)
NumFmt(formatCode = NULL, sourceLinked = FALSE, ...)
formatCode |
formatCode |
sourceLinked |
sourceLinked |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NumFmt(formatCode = "formatCode") ## End(Not run)
## Not run: NumFmt(formatCode = "formatCode") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
NumRef(f = NULL, numCache = NULL, extLst = NULL, ...)
NumRef(f = NULL, numCache = NULL, extLst = NULL, ...)
f |
f |
numCache |
numCache |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: NumRef() ## End(Not run)
## Not run: NumRef() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
NumVal(idx = NULL, formatCode = NULL, v = NULL)
NumVal(idx = NULL, formatCode = NULL, v = NULL)
idx |
idx |
formatCode |
formatCode |
v |
v |
An openpyxl Python object.
## Not run: NumVal(idx = 1L) ## End(Not run)
## Not run: NumVal(idx = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.ole.html
ObjectAnchor( from = NULL, to = NULL, moveWithCells = FALSE, sizeWithCells = FALSE, z_order = NULL, ... )
ObjectAnchor( from = NULL, to = NULL, moveWithCells = FALSE, sizeWithCells = FALSE, z_order = NULL, ... )
from |
_from |
to |
to |
moveWithCells |
moveWithCells |
sizeWithCells |
sizeWithCells |
z_order |
z_order |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ObjectAnchor(from = AnchorMarker(), to = AnchorMarker()) ## End(Not run)
## Not run: ObjectAnchor(from = AnchorMarker(), to = AnchorMarker()) ## End(Not run)
Note that the argument '_from' has been transformed to 'from'.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.spreadsheet_drawing.html
OneCellAnchor(from = NULL, ext = NULL, ...)
OneCellAnchor(from = NULL, ext = NULL, ...)
from |
from |
ext |
ext |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: OneCellAnchor() ## End(Not run)
## Not run: OneCellAnchor() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.properties.html
Outline( applyStyles = NULL, summaryBelow = NULL, summaryRight = NULL, showOutlineSymbols = NULL, ... )
Outline( applyStyles = NULL, summaryBelow = NULL, summaryRight = NULL, showOutlineSymbols = NULL, ... )
applyStyles |
applyStyles |
summaryBelow |
summaryBelow |
summaryRight |
summaryRight |
showOutlineSymbols |
showOutlineSymbols |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Outline() ## End(Not run)
## Not run: Outline() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.pagebreak.html
PageBreak(count = NULL, manualBreakCount = NULL, brk = list(), ...)
PageBreak(count = NULL, manualBreakCount = NULL, brk = list(), ...)
count |
count |
manualBreakCount |
manualBreakCount |
brk |
brk |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PageBreak() ## End(Not run)
## Not run: PageBreak() ## End(Not run)
Information about page margins for view/print layouts.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.page.html
PageMargins( left = 0.75, right = 0.75, top = 1L, bottom = 1L, header = 0.5, footer = 0.5, ... )
PageMargins( left = 0.75, right = 0.75, top = 1L, bottom = 1L, header = 0.5, footer = 0.5, ... )
left |
left |
right |
right |
top |
top |
bottom |
bottom |
header |
header |
footer |
footer |
... |
Additional arguments, i.e. kwargs. |
Standard values (in inches) left, right = 0.75 top, bottom = 1 header, footer = 0.5
An openpyxl Python object.
## Not run: PageMargins() ## End(Not run)
## Not run: PageMargins() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.properties.html
PageSetupProperties(autoPageBreaks = NULL, fitToPage = NULL, ...)
PageSetupProperties(autoPageBreaks = NULL, fitToPage = NULL, ...)
autoPageBreaks |
autoPageBreaks |
fitToPage |
fitToPage |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PageSetupProperties() ## End(Not run)
## Not run: PageSetupProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.views.html
Pane( xSplit = NULL, ySplit = NULL, topLeftCell = NULL, activePane = "topLeft", state = "split", ... )
Pane( xSplit = NULL, ySplit = NULL, topLeftCell = NULL, activePane = "topLeft", state = "split", ... )
xSplit |
xSplit |
ySplit |
ySplit |
topLeftCell |
topLeftCell |
activePane |
activePane |
state |
state |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Pane() ## End(Not run)
## Not run: Pane() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
Paragraph(pPr = NULL, endParaRPr = NULL, r = NULL, br = NULL, fld = NULL, ...)
Paragraph(pPr = NULL, endParaRPr = NULL, r = NULL, br = NULL, fld = NULL, ...)
pPr |
pPr |
endParaRPr |
endParaRPr |
r |
r |
br |
br |
fld |
fld |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Paragraph() ## End(Not run)
## Not run: Paragraph() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
ParagraphProperties( marL = NULL, marR = NULL, lvl = NULL, indent = NULL, algn = NULL, defTabSz = NULL, rtl = NULL, eaLnBrk = NULL, fontAlgn = NULL, latinLnBrk = NULL, hangingPunct = NULL, lnSpc = NULL, spcBef = NULL, spcAft = NULL, tabLst = NULL, defRPr = NULL, extLst = NULL, buClrTx = NULL, buClr = NULL, buSzTx = NULL, buSzPct = NULL, buSzPts = NULL, buFontTx = NULL, buFont = NULL, buNone = NULL, buAutoNum = NULL, buChar = NULL, buBlip = NULL, ... )
ParagraphProperties( marL = NULL, marR = NULL, lvl = NULL, indent = NULL, algn = NULL, defTabSz = NULL, rtl = NULL, eaLnBrk = NULL, fontAlgn = NULL, latinLnBrk = NULL, hangingPunct = NULL, lnSpc = NULL, spcBef = NULL, spcAft = NULL, tabLst = NULL, defRPr = NULL, extLst = NULL, buClrTx = NULL, buClr = NULL, buSzTx = NULL, buSzPct = NULL, buSzPts = NULL, buFontTx = NULL, buFont = NULL, buNone = NULL, buAutoNum = NULL, buChar = NULL, buBlip = NULL, ... )
marL |
marL |
marR |
marR |
lvl |
lvl |
indent |
indent |
algn |
algn |
defTabSz |
defTabSz |
rtl |
rtl |
eaLnBrk |
eaLnBrk |
fontAlgn |
fontAlgn |
latinLnBrk |
latinLnBrk |
hangingPunct |
hangingPunct |
lnSpc |
lnSpc |
spcBef |
spcBef |
spcAft |
spcAft |
tabLst |
tabLst |
defRPr |
defRPr |
extLst |
extLst |
buClrTx |
buClrTx |
buClr |
buClr |
buSzTx |
buSzTx |
buSzPct |
buSzPct |
buSzPts |
buSzPts |
buFontTx |
buFontTx |
buFont |
buFont |
buNone |
buNone |
buAutoNum |
buAutoNum |
buChar |
buChar |
buBlip |
buBlip |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ParagraphProperties() ## End(Not run)
## Not run: ParagraphProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
Path2D(w = NULL, h = NULL, fill = NULL, stroke = NULL, extrusionOk = NULL, ...)
Path2D(w = NULL, h = NULL, fill = NULL, stroke = NULL, extrusionOk = NULL, ...)
w |
w |
h |
h |
fill |
fill |
stroke |
stroke |
extrusionOk |
extrusionOk |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Path2D(w = 1L, h = 1L) ## End(Not run)
## Not run: Path2D(w = 1L, h = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
Path2DList(path = NULL, ...)
Path2DList(path = NULL, ...)
path |
path |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Path2DList() ## End(Not run)
## Not run: Path2DList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.fill.html
PathShadeProperties(path = NULL, fillToRect = NULL, ...)
PathShadeProperties(path = NULL, fillToRect = NULL, ...)
path |
path |
fillToRect |
fillToRect |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PathShadeProperties(path = "circle") ## End(Not run)
## Not run: PathShadeProperties(path = "circle") ## End(Not run)
Area fill patterns for use in styles.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.fills.html
PatternFill( patternType = NULL, fill_type = NULL, start_color = NULL, end_color = NULL, ... )
PatternFill( patternType = NULL, fill_type = NULL, start_color = NULL, end_color = NULL, ... )
patternType |
patternType |
fill_type |
fill_type |
start_color |
start_color |
end_color |
end_color |
... |
Additional arguments, i.e. kwargs. |
Caution: if you do not specify a fill_type, other attributes will have no effect !
An openpyxl Python object.
if you do not specify a fill_type, other attributes will have: no effect !
## Not run: PatternFill() ## End(Not run)
## Not run: PatternFill() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.fill.html
PatternFillProperties(prst = NULL, fgClr = NULL, bgClr = NULL, ...)
PatternFillProperties(prst = NULL, fgClr = NULL, bgClr = NULL, ...)
prst |
prst |
fgClr |
fgClr |
bgClr |
bgClr |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PatternFillProperties() ## End(Not run)
## Not run: PatternFillProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.text.html
PhoneticProperties(fontId = NULL, type = NULL, alignment = NULL, ...)
PhoneticProperties(fontId = NULL, type = NULL, alignment = NULL, ...)
fontId |
fontId |
type |
type |
alignment |
alignment |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PhoneticProperties(fontId = 1L) ## End(Not run)
## Not run: PhoneticProperties(fontId = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.text.html
PhoneticText(sb = NULL, eb = NULL, t = NULL, ...)
PhoneticText(sb = NULL, eb = NULL, t = NULL, ...)
sb |
sb |
eb |
eb |
t |
t |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PhoneticText(sb = 1L, eb = 1L) ## End(Not run)
## Not run: PhoneticText(sb = 1L, eb = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.pie_chart.html
PieChart(firstSliceAng = 0L, extLst = NULL, ...)
PieChart(firstSliceAng = 0L, extLst = NULL, ...)
firstSliceAng |
firstSliceAng |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PieChart() ## End(Not run)
## Not run: PieChart() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.pie_chart.html
PieChart3D(varyColors = TRUE, ser = list(), dLbls = NULL, ...)
PieChart3D(varyColors = TRUE, ser = list(), dLbls = NULL, ...)
varyColors |
varyColors |
ser |
ser |
dLbls |
dLbls |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PieChart3D() ## End(Not run)
## Not run: PieChart3D() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.pivot.html
PivotFormat( idx = 0L, spPr = NULL, txPr = NULL, marker = NULL, dLbl = NULL, extLst = NULL, ... )
PivotFormat( idx = 0L, spPr = NULL, txPr = NULL, marker = NULL, dLbl = NULL, extLst = NULL, ... )
idx |
idx |
spPr |
spPr |
txPr |
txPr |
marker |
marker |
dLbl |
dLbl |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PivotFormat() ## End(Not run)
## Not run: PivotFormat() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.pivot.html
PivotSource(name = NULL, fmtId = NULL, extLst = NULL, ...)
PivotSource(name = NULL, fmtId = NULL, extLst = NULL, ...)
name |
name |
fmtId |
fmtId |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PivotSource(fmtId = 1L) ## End(Not run)
## Not run: PivotSource(fmtId = 1L) ## End(Not run)
1 pixel = 9525 EMUs
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
pixels_to_EMU(value, ...)
pixels_to_EMU(value, ...)
value |
value |
... |
Additional arguments, i.e. kwargs. |
A numeric value.
## Not run: pixels_to_EMU(value = 1L) ## End(Not run)
## Not run: pixels_to_EMU(value = 1L) ## End(Not run)
96 dpi, 72i
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
pixels_to_points(value, dpi = 96L, ...)
pixels_to_points(value, dpi = 96L, ...)
value |
value |
dpi |
dpi |
... |
Additional arguments, i.e. kwargs. |
A numeric value.
## Not run: pixels_to_points(value = 1L) ## End(Not run)
## Not run: pixels_to_points(value = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.plotarea.html
PlotArea( layout = NULL, dTable = NULL, spPr = NULL, charts = list(), axes = list(), extLst = NULL, ... )
PlotArea( layout = NULL, dTable = NULL, spPr = NULL, charts = list(), axes = list(), extLst = NULL, ... )
layout |
layout |
dTable |
dTable |
spPr |
spPr |
charts |
_charts |
axes |
_axes |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PlotArea() ## End(Not run)
## Not run: PlotArea() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
Point2D(x = NULL, y = NULL, ...)
Point2D(x = NULL, y = NULL, ...)
x |
x |
y |
y |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Point2D(x = 1L, y = 1L) ## End(Not run)
## Not run: Point2D(x = 1L, y = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
Point3D(x = NULL, y = NULL, z = NULL, ...)
Point3D(x = NULL, y = NULL, z = NULL, ...)
x |
x |
y |
y |
z |
z |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Point3D(x = 1L, y = 1L, z = 1L) ## End(Not run)
## Not run: Point3D(x = 1L, y = 1L, z = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
points_to_pixels(value, dpi = 96L, ...)
points_to_pixels(value, dpi = 96L, ...)
value |
value |
dpi |
dpi |
... |
Additional arguments, i.e. kwargs. |
A numeric value.
## Not run: points_to_pixels(value = 1L) ## End(Not run)
## Not run: points_to_pixels(value = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
PositiveSize2D(cx = NULL, cy = NULL, ...)
PositiveSize2D(cx = NULL, cy = NULL, ...)
cx |
cx |
cy |
cy |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PositiveSize2D(cx = 1L, cy = 1L) ## End(Not run)
## Not run: PositiveSize2D(cx = 1L, cy = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
PresetGeometry2D(prst = NULL, avLst = NULL, ...)
PresetGeometry2D(prst = NULL, avLst = NULL, ...)
prst |
prst |
avLst |
avLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PresetGeometry2D(prst = "diamond") ## End(Not run)
## Not run: PresetGeometry2D(prst = "diamond") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
PresetShadowEffect(prst = NULL, dist = NULL, dir = NULL, ...)
PresetShadowEffect(prst = NULL, dist = NULL, dir = NULL, ...)
prst |
prst |
dist |
dist |
dir |
dir |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PresetShadowEffect(prst = "shdw20", dist = 1L, dir = 1L) ## End(Not run)
## Not run: PresetShadowEffect(prst = "shdw20", dist = 1L, dir = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.print_settings.html
PrintArea(ranges = list(), title = "", ...)
PrintArea(ranges = list(), title = "", ...)
ranges |
ranges |
title |
title |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PrintArea() ## End(Not run)
## Not run: PrintArea() ## End(Not run)
Worksheet print options
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.page.html
PrintOptions( horizontalCentered = NULL, verticalCentered = NULL, headings = NULL, gridLines = NULL, gridLinesSet = NULL, ... )
PrintOptions( horizontalCentered = NULL, verticalCentered = NULL, headings = NULL, gridLines = NULL, gridLinesSet = NULL, ... )
horizontalCentered |
horizontalCentered |
verticalCentered |
verticalCentered |
headings |
headings |
gridLines |
gridLines |
gridLinesSet |
gridLinesSet |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PrintOptions() ## End(Not run)
## Not run: PrintOptions() ## End(Not run)
Worksheet print page setup
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.page.html
PrintPageSetup( worksheet = NULL, orientation = NULL, paperSize = NULL, scale = NULL, fitToHeight = NULL, fitToWidth = NULL, firstPageNumber = NULL, useFirstPageNumber = NULL, paperHeight = NULL, paperWidth = NULL, pageOrder = NULL, usePrinterDefaults = NULL, blackAndWhite = NULL, draft = NULL, cellComments = NULL, errors = NULL, horizontalDpi = NULL, verticalDpi = NULL, copies = NULL, id = NULL, ... )
PrintPageSetup( worksheet = NULL, orientation = NULL, paperSize = NULL, scale = NULL, fitToHeight = NULL, fitToWidth = NULL, firstPageNumber = NULL, useFirstPageNumber = NULL, paperHeight = NULL, paperWidth = NULL, pageOrder = NULL, usePrinterDefaults = NULL, blackAndWhite = NULL, draft = NULL, cellComments = NULL, errors = NULL, horizontalDpi = NULL, verticalDpi = NULL, copies = NULL, id = NULL, ... )
worksheet |
worksheet |
orientation |
orientation |
paperSize |
paperSize |
scale |
scale |
fitToHeight |
fitToHeight |
fitToWidth |
fitToWidth |
firstPageNumber |
firstPageNumber |
useFirstPageNumber |
useFirstPageNumber |
paperHeight |
paperHeight |
paperWidth |
paperWidth |
pageOrder |
pageOrder |
usePrinterDefaults |
usePrinterDefaults |
blackAndWhite |
blackAndWhite |
draft |
draft |
cellComments |
cellComments |
errors |
errors |
horizontalDpi |
horizontalDpi |
verticalDpi |
verticalDpi |
copies |
copies |
id |
id |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PrintPageSetup() ## End(Not run)
## Not run: PrintPageSetup() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.print_settings.html
PrintSettings(headerFooter = NULL, pageMargins = NULL, pageSetup = NULL, ...)
PrintSettings(headerFooter = NULL, pageMargins = NULL, pageSetup = NULL, ...)
headerFooter |
headerFooter |
pageMargins |
pageMargins |
pageSetup |
pageSetup |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PrintSettings() ## End(Not run)
## Not run: PrintSettings() ## End(Not run)
Contains at least either a range of rows or columns
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.print_settings.html
PrintTitles(cols = NULL, rows = NULL, title = "", ...)
PrintTitles(cols = NULL, rows = NULL, title = "", ...)
cols |
cols |
rows |
rows |
title |
title |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: PrintTitles() ## End(Not run)
## Not run: PrintTitles() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.pie_chart.html
ProjectedPieChart( ofPieType = "pie", gapWidth = NULL, splitType = "auto", splitPos = NULL, custSplit = NULL, secondPieSize = 75L, serLines = NULL, extLst = NULL, ... )
ProjectedPieChart( ofPieType = "pie", gapWidth = NULL, splitType = "auto", splitPos = NULL, custSplit = NULL, secondPieSize = 75L, serLines = NULL, extLst = NULL, ... )
ofPieType |
ofPieType |
gapWidth |
gapWidth |
splitType |
splitType |
splitPos |
splitPos |
custSplit |
custSplit |
secondPieSize |
secondPieSize |
serLines |
serLines |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
This element contains the pie of pie or bar of pie series on this chart. Only the first series shall be displayed. The splitType element shall determine whether the splitPos and custSplit elements apply.
An openpyxl Python object.
## Not run: ProjectedPieChart() ## End(Not run)
## Not run: ProjectedPieChart() ## End(Not run)
Protection options for use in styles.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.protection.html
Protection(locked = TRUE, hidden = FALSE, ...)
Protection(locked = TRUE, hidden = FALSE, ...)
locked |
locked |
hidden |
|
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Protection() ## End(Not run)
## Not run: Protection() ## End(Not run)
Add quotes around sheetnames if they contain spaces.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.cell.html
quote_sheetname(sheetname, ...)
quote_sheetname(sheetname, ...)
sheetname |
sheetname |
... |
Additional arguments, i.e. kwargs. |
An string.
## Not run: wb <- Workbook() quote_sheetname(wb$sheetnames) ## End(Not run)
## Not run: wb <- Workbook() quote_sheetname(wb$sheetnames) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.radar_chart.html
RadarChart( radarStyle = "standard", varyColors = NULL, ser = list(), dLbls = NULL, extLst = NULL, ... )
RadarChart( radarStyle = "standard", varyColors = NULL, ser = list(), dLbls = NULL, extLst = NULL, ... )
radarStyle |
radarStyle |
varyColors |
varyColors |
ser |
ser |
dLbls |
dLbls |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: RadarChart() ## End(Not run)
## Not run: RadarChart() ## End(Not run)
Convert a range string into a list of boundaries:
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.cell.html
range_boundaries(range_string, ...)
range_boundaries(range_string, ...)
range_string |
range_string |
... |
Additional arguments, i.e. kwargs. |
(min_col, min_row, max_col, max_row) Cell coordinates will be converted into a range with the cell at both end
An list.
(min_col, min_row, max_col, max_row) Cell coordinates will be converted into a range with the cell at both end
## Not run: range_boundaries(range_string = "A") ## End(Not run)
## Not run: range_boundaries(range_string = "A") ## End(Not run)
Convert a worksheet range to the sheetname and maximum and minimum coordinate indices
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.cell.html
range_to_tuple(range_string, ...)
range_to_tuple(range_string, ...)
range_string |
range_string |
... |
Additional arguments, i.e. kwargs. |
An list.
## Not run: range_to_tuple(range_string = "sheetname!A1:E4") ## End(Not run)
## Not run: range_to_tuple(range_string = "sheetname!A1:E4") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.read_only.html
ReadOnlyCell(sheet, row, column, value, data_type = "n", style_id = 0L, ...)
ReadOnlyCell(sheet, row, column, value, data_type = "n", style_id = 0L, ...)
sheet |
sheet |
row |
row |
column |
column |
value |
value |
data_type |
data_type |
style_id |
style_id |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ReadOnlyCell(sheet = "sheet", row = 1L, column = 1L, value = 1L) ## End(Not run)
## Not run: ReadOnlyCell(sheet = "sheet", row = 1L, column = 1L, value = 1L) ## End(Not run)
Normalise cell range references
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.reference.html
Reference( worksheet = NULL, min_col = NULL, min_row = NULL, max_col = NULL, max_row = NULL, range_string = NULL, ... )
Reference( worksheet = NULL, min_col = NULL, min_row = NULL, max_col = NULL, max_row = NULL, range_string = NULL, ... )
worksheet |
worksheet |
min_col |
min_col |
min_row |
min_row |
max_col |
max_col |
max_row |
max_row |
range_string |
range_string |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: wb <- Workbook() Reference(worksheet = wb$active, min_col = 1L, min_row = 1L, max_col = 1L, max_row = 1L) ## End(Not run)
## Not run: wb <- Workbook() Reference(worksheet = wb$active, min_col = 1L, min_row = 1L, max_col = 1L, max_row = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
RegularTextRun(rPr = NULL, t = "", ...)
RegularTextRun(rPr = NULL, t = "", ...)
rPr |
rPr |
t |
t |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: RegularTextRun() ## End(Not run)
## Not run: RegularTextRun() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.related.html
Related(id = NULL, ...)
Related(id = NULL, ...)
id |
id |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Related() ## End(Not run)
## Not run: Related() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.fill.html
RelativeRect(l = NULL, t = NULL, r = NULL, b = NULL, ...)
RelativeRect(l = NULL, t = NULL, r = NULL, b = NULL, ...)
l |
l |
t |
t |
r |
r |
b |
b |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: RelativeRect() ## End(Not run)
## Not run: RelativeRect() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
RichTextProperties( rot = NULL, spcFirstLastPara = NULL, vertOverflow = NULL, horzOverflow = NULL, vert = NULL, wrap = NULL, lIns = NULL, tIns = NULL, rIns = NULL, bIns = NULL, numCol = NULL, spcCol = NULL, rtlCol = NULL, fromWordArt = NULL, anchor = NULL, anchorCtr = NULL, forceAA = NULL, upright = NULL, compatLnSpc = NULL, prstTxWarp = NULL, scene3d = NULL, extLst = NULL, noAutofit = NULL, normAutofit = NULL, spAutoFit = NULL, flatTx = NULL, ... )
RichTextProperties( rot = NULL, spcFirstLastPara = NULL, vertOverflow = NULL, horzOverflow = NULL, vert = NULL, wrap = NULL, lIns = NULL, tIns = NULL, rIns = NULL, bIns = NULL, numCol = NULL, spcCol = NULL, rtlCol = NULL, fromWordArt = NULL, anchor = NULL, anchorCtr = NULL, forceAA = NULL, upright = NULL, compatLnSpc = NULL, prstTxWarp = NULL, scene3d = NULL, extLst = NULL, noAutofit = NULL, normAutofit = NULL, spAutoFit = NULL, flatTx = NULL, ... )
rot |
rot |
spcFirstLastPara |
spcFirstLastPara |
vertOverflow |
vertOverflow |
horzOverflow |
horzOverflow |
vert |
vert |
wrap |
wrap |
lIns |
lIns |
tIns |
tIns |
rIns |
rIns |
bIns |
bIns |
numCol |
numCol |
spcCol |
spcCol |
rtlCol |
rtlCol |
fromWordArt |
fromWordArt |
anchor |
anchor |
anchorCtr |
anchorCtr |
forceAA |
forceAA |
upright |
upright |
compatLnSpc |
compatLnSpc |
prstTxWarp |
prstTxWarp |
scene3d |
scene3d |
extLst |
extLst |
noAutofit |
noAutofit |
normAutofit |
normAutofit |
spAutoFit |
spAutoFit |
flatTx |
flatTx |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: RichTextProperties() ## End(Not run)
## Not run: RichTextProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.pagebreak.html
RowBreak(count = NULL, manualBreakCount = NULL, brk = list(), ...)
RowBreak(count = NULL, manualBreakCount = NULL, brk = list(), ...)
count |
count |
manualBreakCount |
manualBreakCount |
brk |
brk |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: RowBreak() ## End(Not run)
## Not run: RowBreak() ## End(Not run)
Information about the display properties of a row.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.dimensions.html
RowDimension( worksheet, index = 0L, ht = NULL, customHeight = NULL, s = NULL, customFormat = NULL, hidden = FALSE, outlineLevel = 0L, outline_level = NULL, collapsed = FALSE, visible = NULL, height = NULL, r = NULL, spans = NULL, thickBot = NULL, thickTop = NULL, ... )
RowDimension( worksheet, index = 0L, ht = NULL, customHeight = NULL, s = NULL, customFormat = NULL, hidden = FALSE, outlineLevel = 0L, outline_level = NULL, collapsed = FALSE, visible = NULL, height = NULL, r = NULL, spans = NULL, thickBot = NULL, thickTop = NULL, ... )
worksheet |
worksheet |
index |
index |
ht |
ht |
customHeight |
customHeight |
s |
s |
customFormat |
customFormat |
hidden |
|
outlineLevel |
outlineLevel |
outline_level |
outline_level |
collapsed |
collapsed |
visible |
visible |
height |
height |
r |
r |
spans |
spans |
thickBot |
thickBot |
thickTop |
thickTop |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: wb <- Workbook() RowDimension(wb$active) ## End(Not run)
## Not run: wb <- Workbook() RowDimension(wb$active) ## End(Not run)
Represent a range of at least one row
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.print_settings.html
RowRange(range_string = NULL, min_row = NULL, max_row = NULL, ...)
RowRange(range_string = NULL, min_row = NULL, max_row = NULL, ...)
range_string |
range_string |
min_row |
min_row |
max_row |
max_row |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: RowRange(min_row = 1L, max_row = 2L) ## End(Not run)
## Not run: RowRange(min_row = 1L, max_row = 2L) ## End(Not run)
Get individual addresses for every cell in a range.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.cell.html
rows_from_range(range_string, ...)
rows_from_range(range_string, ...)
range_string |
range_string |
... |
Additional arguments, i.e. kwargs. |
Yields one row at a time.
An openpyxl Python object.
## Not run: rows_from_range(range_string = "A") ## End(Not run)
## Not run: rows_from_range(range_string = "A") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
Rule( type, dxfId = NULL, priority = 0L, stopIfTrue = NULL, aboveAverage = NULL, percent = NULL, bottom = NULL, operator = NULL, text = NULL, timePeriod = NULL, rank = NULL, stdDev = NULL, equalAverage = NULL, formula = list(), colorScale = NULL, dataBar = NULL, iconSet = NULL, extLst = NULL, dxf = NULL, ... )
Rule( type, dxfId = NULL, priority = 0L, stopIfTrue = NULL, aboveAverage = NULL, percent = NULL, bottom = NULL, operator = NULL, text = NULL, timePeriod = NULL, rank = NULL, stdDev = NULL, equalAverage = NULL, formula = list(), colorScale = NULL, dataBar = NULL, iconSet = NULL, extLst = NULL, dxf = NULL, ... )
type |
type |
dxfId |
dxfId |
priority |
priority |
stopIfTrue |
stopIfTrue |
aboveAverage |
aboveAverage |
percent |
percent |
bottom |
bottom |
operator |
operator |
text |
text |
timePeriod |
timePeriod |
rank |
rank |
stdDev |
stdDev |
equalAverage |
equalAverage |
formula |
formula |
colorScale |
colorScale |
dataBar |
dataBar |
iconSet |
iconSet |
extLst |
extLst |
dxf |
dxf |
... |
Additional arguments, i.e. kwargs |
An openpyxl Python object.
## Not run: Rule(type = "colorScale") ## End(Not run)
## Not run: Rule(type = "colorScale") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
RuleType(...)
RuleType(...)
... |
Additional arguments, i.e. kwargs |
An openpyxl Python object.
## Not run: RuleType() ## End(Not run)
## Not run: RuleType() ## End(Not run)
Save the given workbook on the filesystem under the name filename.
https://openpyxl.readthedocs.io/en/latest/api/openpyxl.writer.excel.html
save_workbook(workbook, filename, ...)
save_workbook(workbook, filename, ...)
workbook |
workbook |
filename |
filename |
... |
Additional arguments, i.e. kwargs. |
:param workbook: the workbook to save :type workbook: :class:'openpyxl.workbook.Workbook' :param filename: the path to which save the workbook :type filename: string :rtype: bool
An openpyxl Python object.
## Not run: save_workbook(workbook = wb, filename = tempfile()) ## End(Not run)
## Not run: save_workbook(workbook = wb, filename = tempfile()) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.axis.html
Scaling( logBase = NULL, orientation = "minMax", max = NULL, min = NULL, extLst = NULL, ... )
Scaling( logBase = NULL, orientation = "minMax", max = NULL, min = NULL, extLst = NULL, ... )
logBase |
logBase |
orientation |
orientation |
max |
max |
min |
min |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Scaling() ## End(Not run)
## Not run: Scaling() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.scatter_chart.html
ScatterChart( scatterStyle = NULL, varyColors = NULL, ser = list(), dLbls = NULL, extLst = NULL, ... )
ScatterChart( scatterStyle = NULL, varyColors = NULL, ser = list(), dLbls = NULL, extLst = NULL, ... )
scatterStyle |
scatterStyle |
varyColors |
varyColors |
ser |
ser |
dLbls |
dLbls |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ScatterChart() ## End(Not run)
## Not run: ScatterChart() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.scenario.html
Scenario( inputCells = list(), name = NULL, locked = FALSE, hidden = FALSE, count = NULL, user = NULL, comment = NULL, ... )
Scenario( inputCells = list(), name = NULL, locked = FALSE, hidden = FALSE, count = NULL, user = NULL, comment = NULL, ... )
inputCells |
inputCells |
name |
name |
locked |
locked |
hidden |
|
count |
count |
user |
user |
comment |
comment |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Scenario(name = "name") ## End(Not run)
## Not run: Scenario(name = "name") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.scenario.html
ScenarioList(scenario = list(), current = NULL, show = NULL, sqref = NULL, ...)
ScenarioList(scenario = list(), current = NULL, show = NULL, sqref = NULL, ...)
scenario |
scenario |
current |
current |
show |
show |
sqref |
sqref |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ScenarioList() ## End(Not run)
## Not run: ScenarioList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
Scene3D(camera = NULL, lightRig = NULL, backdrop = NULL, extLst = NULL, ...)
Scene3D(camera = NULL, lightRig = NULL, backdrop = NULL, extLst = NULL, ...)
camera |
camera |
lightRig |
lightRig |
backdrop |
backdrop |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Scene3D( camera = Camera(prst = "perspectiveLeft"), lightRig = LightRig(rig = "morning", dir = "t") ) ## End(Not run)
## Not run: Scene3D( camera = Camera(prst = "perspectiveLeft"), lightRig = LightRig(rig = "morning", dir = "t") ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.colors.html
SchemeColor( tint = NULL, shade = NULL, comp = NULL, inv = NULL, gray = NULL, alpha = NULL, alphaOff = NULL, alphaMod = NULL, hue = NULL, hueOff = NULL, hueMod = NULL, sat = NULL, satOff = NULL, satMod = NULL, lum = NULL, lumOff = NULL, lumMod = NULL, red = NULL, redOff = NULL, redMod = NULL, green = NULL, greenOff = NULL, greenMod = NULL, blue = NULL, blueOff = NULL, blueMod = NULL, gamma = NULL, invGamma = NULL, val = NULL, ... )
SchemeColor( tint = NULL, shade = NULL, comp = NULL, inv = NULL, gray = NULL, alpha = NULL, alphaOff = NULL, alphaMod = NULL, hue = NULL, hueOff = NULL, hueMod = NULL, sat = NULL, satOff = NULL, satMod = NULL, lum = NULL, lumOff = NULL, lumMod = NULL, red = NULL, redOff = NULL, redMod = NULL, green = NULL, greenOff = NULL, greenMod = NULL, blue = NULL, blueOff = NULL, blueMod = NULL, gamma = NULL, invGamma = NULL, val = NULL, ... )
tint |
tint |
shade |
shade |
comp |
comp |
inv |
inv |
gray |
gray |
alpha |
alpha |
alphaOff |
alphaOff |
alphaMod |
alphaMod |
hue |
hue |
hueOff |
hueOff |
hueMod |
hueMod |
sat |
sat |
satOff |
satOff |
satMod |
satMod |
lum |
lum |
lumOff |
lumOff |
lumMod |
lumMod |
red |
red |
redOff |
redOff |
redMod |
redMod |
green |
green |
greenOff |
greenOff |
greenMod |
greenMod |
blue |
blue |
blueOff |
blueOff |
blueMod |
blueMod |
gamma |
gamma |
invGamma |
invGamma |
val |
val |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: # from Gradient Pie Charts example slice <- DataPoint( idx = 0, explosion = 20, spPr = GraphicalProperties( gradFill = GradientFillProperties( gsLst = list( pos=0, prstClr='blue' ), GradientStop( pos=100000, schemeClr=SchemeColor( val='accent1', lumMod=30000, lumOff=70000 ) ) ) ) ) ## End(Not run)
## Not run: # from Gradient Pie Charts example slice <- DataPoint( idx = 0, explosion = 20, spPr = GraphicalProperties( gradFill = GradientFillProperties( gsLst = list( pos=0, prstClr='blue' ), GradientStop( pos=100000, schemeClr=SchemeColor( val='accent1', lumMod=30000, lumOff=70000 ) ) ) ) ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.views.html
Selection( pane = NULL, activeCell = "A1", activeCellId = NULL, sqref = "A1", ... )
Selection( pane = NULL, activeCell = "A1", activeCellId = NULL, sqref = "A1", ... )
pane |
pane |
activeCell |
activeCell |
activeCellId |
activeCellId |
sqref |
sqref |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Selection() ## End(Not run)
## Not run: Selection() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.series.html
Series( values, xvalues = NULL, zvalues = NULL, title = NULL, title_from_data = FALSE, ... )
Series( values, xvalues = NULL, zvalues = NULL, title = NULL, title_from_data = FALSE, ... )
values |
values |
xvalues |
xvalues |
zvalues |
zvalues |
title |
title |
title_from_data |
title_from_data |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Series(values = "sheetname!A1:E4") ## End(Not run)
## Not run: Series(values = "sheetname!A1:E4") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.axis.html
SeriesAxis(tickLblSkip = NULL, tickMarkSkip = NULL, extLst = NULL, ...)
SeriesAxis(tickLblSkip = NULL, tickMarkSkip = NULL, extLst = NULL, ...)
tickLblSkip |
tickLblSkip |
tickMarkSkip |
tickMarkSkip |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SeriesAxis() ## End(Not run)
## Not run: SeriesAxis() ## End(Not run)
Convenience Factory for creating chart data series.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.series_factory.html
SeriesFactory( values, xvalues = NULL, zvalues = NULL, title = NULL, title_from_data = FALSE, ... )
SeriesFactory( values, xvalues = NULL, zvalues = NULL, title = NULL, title_from_data = FALSE, ... )
values |
values |
xvalues |
xvalues |
zvalues |
zvalues |
title |
title |
title_from_data |
title_from_data |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SeriesFactory(values = "sheetname!A1:E4") ## End(Not run)
## Not run: SeriesFactory(values = "sheetname!A1:E4") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.series.html
SeriesLabel(strRef = NULL, v = NULL, ...)
SeriesLabel(strRef = NULL, v = NULL, ...)
strRef |
strRef |
v |
v |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SeriesLabel() ## End(Not run)
## Not run: SeriesLabel() ## End(Not run)
Set the categories / x-axis values
set_categories(py_obj, labels)
set_categories(py_obj, labels)
py_obj |
py_obj |
labels |
labels |
An openpyxl Python object.
## Not run: wb <- Workbook() ws <- active(wb) chart1 <- BarChart( type = "col", style = 10, title = "Bar Chart", shape = 4 ) |> y_axis(title = "Test number") |> x_axis(title = "Sample length (mm)") data <- Reference(ws, min_col=2, min_row=1, max_row=7, max_col=3) cats <- Reference(ws, min_col=1, min_row=2, max_row=7) chart1 |> add_data(data = data, titles_from_data = TRUE) |> set_categories(cats) ## End(Not run)
## Not run: wb <- Workbook() ws <- active(wb) chart1 <- BarChart( type = "col", style = 10, title = "Bar Chart", shape = 4 ) |> y_axis(title = "Test number") |> x_axis(title = "Sample length (mm)") data <- Reference(ws, min_col=2, min_row=1, max_row=7, max_col=3) cats <- Reference(ws, min_col=1, min_row=2, max_row=7) chart1 |> add_data(data = data, titles_from_data = TRUE) |> set_categories(cats) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.connector.html
Shape( macro = NULL, textlink = NULL, fPublished = NULL, fLocksText = NULL, nvSpPr = NULL, spPr = NULL, style = NULL, txBody = NULL, ... )
Shape( macro = NULL, textlink = NULL, fPublished = NULL, fLocksText = NULL, nvSpPr = NULL, spPr = NULL, style = NULL, txBody = NULL, ... )
macro |
macro |
textlink |
textlink |
fPublished |
fPublished |
fLocksText |
fLocksText |
nvSpPr |
nvSpPr |
spPr |
spPr |
style |
style |
txBody |
txBody |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Shape(spPr = GraphicalProperties()) ## End(Not run)
## Not run: Shape(spPr = GraphicalProperties()) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
Shape3D( z = NULL, extrusionH = NULL, contourW = NULL, prstMaterial = NULL, bevelT = NULL, bevelB = NULL, extrusionClr = NULL, contourClr = NULL, extLst = NULL, ... )
Shape3D( z = NULL, extrusionH = NULL, contourW = NULL, prstMaterial = NULL, bevelT = NULL, bevelB = NULL, extrusionClr = NULL, contourClr = NULL, extLst = NULL, ... )
z |
z |
extrusionH |
extrusionH |
contourW |
contourW |
prstMaterial |
prstMaterial |
bevelT |
bevelT |
bevelB |
bevelB |
extrusionClr |
extrusionClr |
contourClr |
contourClr |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Shape3D() ## End(Not run)
## Not run: Shape3D() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
ShapeStyle(lnRef = NULL, fillRef = NULL, effectRef = NULL, fontRef = NULL, ...)
ShapeStyle(lnRef = NULL, fillRef = NULL, effectRef = NULL, fontRef = NULL, ...)
lnRef |
lnRef |
fillRef |
fillRef |
effectRef |
effectRef |
fontRef |
fontRef |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: ShapeStyle( lnRef = StyleMatrixReference(idx = 1L), fillRef = StyleMatrixReference(idx = 1L), effectRef = StyleMatrixReference(idx = 1L), fontRef = FontReference() ) ## End(Not run)
## Not run: ShapeStyle( lnRef = StyleMatrixReference(idx = 1L), fillRef = StyleMatrixReference(idx = 1L), effectRef = StyleMatrixReference(idx = 1L), fontRef = FontReference() ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.picture.html
SheetBackgroundPicture(...)
SheetBackgroundPicture(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SheetBackgroundPicture() ## End(Not run)
## Not run: SheetBackgroundPicture() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.dimensions.html
SheetDimension(ref = NULL, ...)
SheetDimension(ref = NULL, ...)
ref |
ref |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SheetDimension(ref = "ref") ## End(Not run)
## Not run: SheetDimension(ref = "ref") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.dimensions.html
SheetFormatProperties( baseColWidth = 8L, defaultColWidth = NULL, defaultRowHeight = 15L, customHeight = NULL, zeroHeight = NULL, thickTop = NULL, thickBottom = NULL, outlineLevelRow = NULL, outlineLevelCol = NULL, ... )
SheetFormatProperties( baseColWidth = 8L, defaultColWidth = NULL, defaultRowHeight = 15L, customHeight = NULL, zeroHeight = NULL, thickTop = NULL, thickBottom = NULL, outlineLevelRow = NULL, outlineLevelCol = NULL, ... )
baseColWidth |
baseColWidth |
defaultColWidth |
defaultColWidth |
defaultRowHeight |
defaultRowHeight |
customHeight |
customHeight |
zeroHeight |
zeroHeight |
thickTop |
thickTop |
thickBottom |
thickBottom |
outlineLevelRow |
outlineLevelRow |
outlineLevelCol |
outlineLevelCol |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SheetFormatProperties() ## End(Not run)
## Not run: SheetFormatProperties() ## End(Not run)
Information about protection of various aspects of a sheet. TRUE values
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.protection.html
SheetProtection( sheet = FALSE, objects = FALSE, scenarios = FALSE, formatCells = TRUE, formatRows = TRUE, formatColumns = TRUE, insertColumns = TRUE, insertRows = TRUE, insertHyperlinks = TRUE, deleteColumns = TRUE, deleteRows = TRUE, selectLockedCells = FALSE, selectUnlockedCells = FALSE, sort = TRUE, autoFilter = TRUE, pivotTables = TRUE, password = NULL, algorithmName = NULL, saltValue = NULL, spinCount = NULL, hashValue = NULL, ... )
SheetProtection( sheet = FALSE, objects = FALSE, scenarios = FALSE, formatCells = TRUE, formatRows = TRUE, formatColumns = TRUE, insertColumns = TRUE, insertRows = TRUE, insertHyperlinks = TRUE, deleteColumns = TRUE, deleteRows = TRUE, selectLockedCells = FALSE, selectUnlockedCells = FALSE, sort = TRUE, autoFilter = TRUE, pivotTables = TRUE, password = NULL, algorithmName = NULL, saltValue = NULL, spinCount = NULL, hashValue = NULL, ... )
sheet |
sheet |
objects |
objects |
scenarios |
scenarios |
formatCells |
formatCells |
formatRows |
formatRows |
formatColumns |
formatColumns |
insertColumns |
insertColumns |
insertRows |
insertRows |
insertHyperlinks |
insertHyperlinks |
deleteColumns |
deleteColumns |
deleteRows |
deleteRows |
selectLockedCells |
selectLockedCells |
selectUnlockedCells |
selectUnlockedCells |
sort |
sort |
autoFilter |
autoFilter |
pivotTables |
pivotTables |
password |
password |
algorithmName |
algorithmName |
saltValue |
saltValue |
spinCount |
spinCount |
hashValue |
hashValue |
... |
Additional arguments, i.e. kwargs. |
mean that protection for the object or action is active This is the **default** when protection is active, ie. users cannot do something
An openpyxl Python object.
## Not run: SheetProtection() ## End(Not run)
## Not run: SheetProtection() ## End(Not run)
Information about the visible portions of this sheet.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.views.html
SheetView( windowProtection = NULL, showFormulas = NULL, showGridLines = NULL, showRowColHeaders = NULL, showZeros = NULL, rightToLeft = NULL, tabSelected = NULL, showRuler = NULL, showOutlineSymbols = NULL, defaultGridColor = NULL, showWhiteSpace = NULL, view = NULL, topLeftCell = NULL, colorId = NULL, zoomScale = NULL, zoomScaleNormal = NULL, zoomScaleSheetLayoutView = NULL, zoomScalePageLayoutView = NULL, zoomToFit = NULL, workbookViewId = 0L, selection = NULL, pane = NULL, ... )
SheetView( windowProtection = NULL, showFormulas = NULL, showGridLines = NULL, showRowColHeaders = NULL, showZeros = NULL, rightToLeft = NULL, tabSelected = NULL, showRuler = NULL, showOutlineSymbols = NULL, defaultGridColor = NULL, showWhiteSpace = NULL, view = NULL, topLeftCell = NULL, colorId = NULL, zoomScale = NULL, zoomScaleNormal = NULL, zoomScaleSheetLayoutView = NULL, zoomScalePageLayoutView = NULL, zoomToFit = NULL, workbookViewId = 0L, selection = NULL, pane = NULL, ... )
windowProtection |
windowProtection |
showFormulas |
showFormulas |
showGridLines |
showGridLines |
showRowColHeaders |
showRowColHeaders |
showZeros |
showZeros |
rightToLeft |
rightToLeft |
tabSelected |
tabSelected |
showRuler |
showRuler |
showOutlineSymbols |
showOutlineSymbols |
defaultGridColor |
defaultGridColor |
showWhiteSpace |
showWhiteSpace |
view |
view |
topLeftCell |
topLeftCell |
colorId |
colorId |
zoomScale |
zoomScale |
zoomScaleNormal |
zoomScaleNormal |
zoomScaleSheetLayoutView |
zoomScaleSheetLayoutView |
zoomScalePageLayoutView |
zoomScalePageLayoutView |
zoomToFit |
zoomToFit |
workbookViewId |
workbookViewId |
selection |
selection |
pane |
pane |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SheetView() ## End(Not run)
## Not run: SheetView() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.views.html
SheetViewList(sheetView = NULL, extLst = NULL, ...)
SheetViewList(sheetView = NULL, extLst = NULL, ...)
sheetView |
sheetView |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SheetViewList() ## End(Not run)
## Not run: SheetViewList() ## End(Not run)
format a color to its short size
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.utils.units.html
short_color(color, ...)
short_color(color, ...)
color |
color |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: short_color(color = "color") ## End(Not run)
## Not run: short_color(color = "color") ## End(Not run)
Border options for use in styles.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.borders.html
Side(style = NULL, color = NULL, border_style = NULL, ...)
Side(style = NULL, color = NULL, border_style = NULL, ...)
style |
style |
color |
color |
border_style |
border_style |
... |
Additional arguments, i.e. kwargs. |
Caution: if you do not specify a border_style, other attributes will have no effect !
An openpyxl Python object.
if you do not specify a border_style, other attributes will: have no effect !
## Not run: Side() ## End(Not run)
## Not run: Side() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.smart_tags.html
SmartTag(namespaceUri = NULL, name = NULL, url = NULL, ...)
SmartTag(namespaceUri = NULL, name = NULL, url = NULL, ...)
namespaceUri |
namespaceUri |
name |
name |
url |
url |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SmartTag() ## End(Not run)
## Not run: SmartTag() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.smart_tags.html
SmartTagList(smartTagType = list(), ...)
SmartTagList(smartTagType = list(), ...)
smartTagType |
smartTagType |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SmartTagList() ## End(Not run)
## Not run: SmartTagList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.smart_tags.html
SmartTagProperties(embed = NULL, show = NULL, ...)
SmartTagProperties(embed = NULL, show = NULL, ...)
embed |
embed |
show |
show |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SmartTagProperties() ## End(Not run)
## Not run: SmartTagProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.smart_tag.html
SmartTags(cellSmartTags = list(), ...)
SmartTags(cellSmartTags = list(), ...)
cellSmartTags |
cellSmartTags |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SmartTags() ## End(Not run)
## Not run: SmartTags() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
SoftEdgesEffect(rad = NULL, ...)
SoftEdgesEffect(rad = NULL, ...)
rad |
rad |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SoftEdgesEffect(rad = 1L) ## End(Not run)
## Not run: SoftEdgesEffect(rad = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.fill.html
SolidColorFillProperties( scrgbClr = NULL, srgbClr = NULL, hslClr = NULL, sysClr = NULL, schemeClr = NULL, prstClr = NULL, ... )
SolidColorFillProperties( scrgbClr = NULL, srgbClr = NULL, hslClr = NULL, sysClr = NULL, schemeClr = NULL, prstClr = NULL, ... )
scrgbClr |
scrgbClr |
srgbClr |
srgbClr |
hslClr |
hslClr |
sysClr |
sysClr |
schemeClr |
schemeClr |
prstClr |
prstClr |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SolidColorFillProperties() ## End(Not run)
## Not run: SolidColorFillProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.filters.html
SortCondition( ref = NULL, descending = NULL, sortBy = NULL, customList = NULL, dxfId = NULL, iconSet = NULL, iconId = NULL, ... )
SortCondition( ref = NULL, descending = NULL, sortBy = NULL, customList = NULL, dxfId = NULL, iconSet = NULL, iconId = NULL, ... )
ref |
ref |
descending |
descending |
sortBy |
sortBy |
customList |
customList |
dxfId |
dxfId |
iconSet |
iconSet |
iconId |
iconId |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SortCondition() ## End(Not run)
## Not run: SortCondition() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.filters.html
SortState( columnSort = NULL, caseSensitive = NULL, sortMethod = NULL, ref = NULL, sortCondition = list(), extLst = NULL, ... )
SortState( columnSort = NULL, caseSensitive = NULL, sortMethod = NULL, ref = NULL, sortCondition = list(), extLst = NULL, ... )
columnSort |
columnSort |
caseSensitive |
caseSensitive |
sortMethod |
sortMethod |
ref |
ref |
sortCondition |
sortCondition |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SortState() ## End(Not run)
## Not run: SortState() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
Spacing(spcPct = NULL, spcPts = NULL, ...)
Spacing(spcPct = NULL, spcPts = NULL, ...)
spcPct |
spcPct |
spcPts |
spcPts |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Spacing() ## End(Not run)
## Not run: Spacing() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
SphereCoords(lat = NULL, lon = NULL, rev = NULL, ...)
SphereCoords(lat = NULL, lon = NULL, rev = NULL, ...)
lat |
lat |
lon |
lon |
rev |
rev |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SphereCoords(lat = 1L, lon = 1L, rev = 1L) ## End(Not run)
## Not run: SphereCoords(lat = 1L, lon = 1L, rev = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.spreadsheet_drawing.html
SpreadsheetDrawing( twoCellAnchor = list(), oneCellAnchor = list(), absoluteAnchor = list(), ... )
SpreadsheetDrawing( twoCellAnchor = list(), oneCellAnchor = list(), absoluteAnchor = list(), ... )
twoCellAnchor |
twoCellAnchor |
oneCellAnchor |
oneCellAnchor |
absoluteAnchor |
absoluteAnchor |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SpreadsheetDrawing() ## End(Not run)
## Not run: SpreadsheetDrawing() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.stock_chart.html
StockChart( ser = list(), dLbls = NULL, dropLines = NULL, hiLowLines = NULL, upDownBars = NULL, extLst = NULL, ... )
StockChart( ser = list(), dLbls = NULL, dropLines = NULL, hiLowLines = NULL, upDownBars = NULL, extLst = NULL, ... )
ser |
ser |
dLbls |
dLbls |
dropLines |
dropLines |
hiLowLines |
hiLowLines |
upDownBars |
upDownBars |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: StockChart() ## End(Not run)
## Not run: StockChart() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.fills.html
Stop(color, position, ...)
Stop(color, position, ...)
color |
color |
position |
position |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Stop(color = Color(), position = 1L) ## End(Not run)
## Not run: Stop(color = Color(), position = 1L) ## End(Not run)
A sequence (list or list) that may only contain objects of the declared
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.fills.html
StopList(name = NULL, ...)
StopList(name = NULL, ...)
name |
name |
... |
Additional arguments, i.e. kwargs. |
type
An openpyxl Python object.
## Not run: StopList() ## End(Not run)
## Not run: StopList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
StrData(ptCount = NULL, pt = list(), extLst = NULL, ...)
StrData(ptCount = NULL, pt = list(), extLst = NULL, ...)
ptCount |
ptCount |
pt |
pt |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: StrData() ## End(Not run)
## Not run: StrData() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.fill.html
StretchInfoProperties(...)
StretchInfoProperties(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: StretchInfoProperties() ## End(Not run)
## Not run: StretchInfoProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
StrRef(f = NULL, strCache = NULL, extLst = NULL, ...)
StrRef(f = NULL, strCache = NULL, extLst = NULL, ...)
f |
f |
strCache |
strCache |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: StrRef() ## End(Not run)
## Not run: StrRef() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.data_source.html
StrVal(idx = 0L, v = NULL, ...)
StrVal(idx = 0L, v = NULL, ...)
idx |
idx |
v |
v |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: StrVal() ## End(Not run)
## Not run: StrVal() ## End(Not run)
Simplified named list with an array
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.cell_style.html
StyleArray(args = c(0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L), ...)
StyleArray(args = c(0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L), ...)
args |
args |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: StyleArray() ## End(Not run)
## Not run: StyleArray() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
StyleMatrixReference(idx = NULL, ...)
StyleMatrixReference(idx = NULL, ...)
idx |
idx |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: StyleMatrixReference(idx = 1L) ## End(Not run)
## Not run: StyleMatrixReference(idx = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.stylesheet.html
Stylesheet( numFmts = NULL, fonts = list(), fills = list(), borders = list(), cellStyleXfs = NULL, cellXfs = NULL, cellStyles = NULL, dxfs = list(), tableStyles = NULL, colors = NULL, extLst = NULL, ... )
Stylesheet( numFmts = NULL, fonts = list(), fills = list(), borders = list(), cellStyleXfs = NULL, cellXfs = NULL, cellStyles = NULL, dxfs = list(), tableStyles = NULL, colors = NULL, extLst = NULL, ... )
numFmts |
numFmts |
fonts |
fonts |
fills |
fills |
borders |
borders |
cellStyleXfs |
cellStyleXfs |
cellXfs |
cellXfs |
cellStyles |
cellStyles |
dxfs |
dxfs |
tableStyles |
tableStyles |
colors |
colors |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Stylesheet() ## End(Not run)
## Not run: Stylesheet() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.surface_chart.html
SurfaceChart(wireframe = NULL, ser = list(), bandFmts = NULL, ...)
SurfaceChart(wireframe = NULL, ser = list(), bandFmts = NULL, ...)
wireframe |
wireframe |
ser |
ser |
bandFmts |
bandFmts |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SurfaceChart() ## End(Not run)
## Not run: SurfaceChart() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.surface_chart.html
SurfaceChart3D(wireframe = NULL, ser = list(), bandFmts = NULL, ...)
SurfaceChart3D(wireframe = NULL, ser = list(), bandFmts = NULL, ...)
wireframe |
wireframe |
ser |
ser |
bandFmts |
bandFmts |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SurfaceChart3D() ## End(Not run)
## Not run: SurfaceChart3D() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.colors.html
SystemColor( val = "windowText", lastClr = NULL, tint = NULL, shade = NULL, comp = NULL, inv = NULL, gray = NULL, alpha = NULL, alphaOff = NULL, alphaMod = NULL, hue = NULL, hueOff = NULL, hueMod = NULL, sat = NULL, satOff = NULL, satMod = NULL, lum = NULL, lumOff = NULL, lumMod = NULL, red = NULL, redOff = NULL, redMod = NULL, green = NULL, greenOff = NULL, greenMod = NULL, blue = NULL, blueOff = NULL, blueMod = NULL, gamma = NULL, invGamma = NULL, ... )
SystemColor( val = "windowText", lastClr = NULL, tint = NULL, shade = NULL, comp = NULL, inv = NULL, gray = NULL, alpha = NULL, alphaOff = NULL, alphaMod = NULL, hue = NULL, hueOff = NULL, hueMod = NULL, sat = NULL, satOff = NULL, satMod = NULL, lum = NULL, lumOff = NULL, lumMod = NULL, red = NULL, redOff = NULL, redMod = NULL, green = NULL, greenOff = NULL, greenMod = NULL, blue = NULL, blueOff = NULL, blueMod = NULL, gamma = NULL, invGamma = NULL, ... )
val |
val |
lastClr |
lastClr |
tint |
tint |
shade |
shade |
comp |
comp |
inv |
inv |
gray |
gray |
alpha |
alpha |
alphaOff |
alphaOff |
alphaMod |
alphaMod |
hue |
hue |
hueOff |
hueOff |
hueMod |
hueMod |
sat |
sat |
satOff |
satOff |
satMod |
satMod |
lum |
lum |
lumOff |
lumOff |
lumMod |
lumMod |
red |
red |
redOff |
redOff |
redMod |
redMod |
green |
green |
greenOff |
greenOff |
greenMod |
greenMod |
blue |
blue |
blueOff |
blueOff |
blueMod |
blueMod |
gamma |
gamma |
invGamma |
invGamma |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: SystemColor() ## End(Not run)
## Not run: SystemColor() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.table.html
Table( id = 1L, displayName, ref = NULL, name = NULL, comment = NULL, tableType = NULL, headerRowCount = 1L, insertRow = NULL, insertRowShift = NULL, totalsRowCount = NULL, totalsRowShown = NULL, published = NULL, headerRowDxfId = NULL, dataDxfId = NULL, totalsRowDxfId = NULL, headerRowBorderDxfId = NULL, tableBorderDxfId = NULL, totalsRowBorderDxfId = NULL, headerRowCellStyle = NULL, dataCellStyle = NULL, totalsRowCellStyle = NULL, connectionId = NULL, autoFilter = NULL, sortState = NULL, tableColumns = list(), tableStyleInfo = NULL, extLst = NULL, ... )
Table( id = 1L, displayName, ref = NULL, name = NULL, comment = NULL, tableType = NULL, headerRowCount = 1L, insertRow = NULL, insertRowShift = NULL, totalsRowCount = NULL, totalsRowShown = NULL, published = NULL, headerRowDxfId = NULL, dataDxfId = NULL, totalsRowDxfId = NULL, headerRowBorderDxfId = NULL, tableBorderDxfId = NULL, totalsRowBorderDxfId = NULL, headerRowCellStyle = NULL, dataCellStyle = NULL, totalsRowCellStyle = NULL, connectionId = NULL, autoFilter = NULL, sortState = NULL, tableColumns = list(), tableStyleInfo = NULL, extLst = NULL, ... )
id |
id |
displayName |
displayName |
ref |
ref |
name |
name |
comment |
comment |
tableType |
tableType |
headerRowCount |
headerRowCount |
insertRow |
insertRow |
insertRowShift |
insertRowShift |
totalsRowCount |
totalsRowCount |
totalsRowShown |
totalsRowShown |
published |
published |
headerRowDxfId |
headerRowDxfId |
dataDxfId |
dataDxfId |
totalsRowDxfId |
totalsRowDxfId |
headerRowBorderDxfId |
headerRowBorderDxfId |
tableBorderDxfId |
tableBorderDxfId |
totalsRowBorderDxfId |
totalsRowBorderDxfId |
headerRowCellStyle |
headerRowCellStyle |
dataCellStyle |
dataCellStyle |
totalsRowCellStyle |
totalsRowCellStyle |
connectionId |
connectionId |
autoFilter |
autoFilter |
sortState |
sortState |
tableColumns |
tableColumns |
tableStyleInfo |
tableStyleInfo |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Table(displayName = "displayName") ## End(Not run)
## Not run: Table(displayName = "displayName") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.table.html
TableColumn( id = NULL, uniqueName = NULL, name = NULL, totalsRowFunction = NULL, totalsRowLabel = NULL, queryTableFieldId = NULL, headerRowDxfId = NULL, dataDxfId = NULL, totalsRowDxfId = NULL, headerRowCellStyle = NULL, dataCellStyle = NULL, totalsRowCellStyle = NULL, calculatedColumnFormula = NULL, totalsRowFormula = NULL, xmlColumnPr = NULL, extLst = NULL, ... )
TableColumn( id = NULL, uniqueName = NULL, name = NULL, totalsRowFunction = NULL, totalsRowLabel = NULL, queryTableFieldId = NULL, headerRowDxfId = NULL, dataDxfId = NULL, totalsRowDxfId = NULL, headerRowCellStyle = NULL, dataCellStyle = NULL, totalsRowCellStyle = NULL, calculatedColumnFormula = NULL, totalsRowFormula = NULL, xmlColumnPr = NULL, extLst = NULL, ... )
id |
id |
uniqueName |
uniqueName |
name |
name |
totalsRowFunction |
totalsRowFunction |
totalsRowLabel |
totalsRowLabel |
queryTableFieldId |
queryTableFieldId |
headerRowDxfId |
headerRowDxfId |
dataDxfId |
dataDxfId |
totalsRowDxfId |
totalsRowDxfId |
headerRowCellStyle |
headerRowCellStyle |
dataCellStyle |
dataCellStyle |
totalsRowCellStyle |
totalsRowCellStyle |
calculatedColumnFormula |
calculatedColumnFormula |
totalsRowFormula |
totalsRowFormula |
xmlColumnPr |
xmlColumnPr |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TableColumn(id = 1L, name = "name") ## End(Not run)
## Not run: TableColumn(id = 1L, name = "name") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.table.html
TableFormula(array = NULL, attr_text = NULL, ...)
TableFormula(array = NULL, attr_text = NULL, ...)
array |
array |
attr_text |
attr_text |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TableFormula() ## End(Not run)
## Not run: TableFormula() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.table.html
TableNameDescriptor(...)
TableNameDescriptor(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TableNameDescriptor() ## End(Not run)
## Not run: TableNameDescriptor() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.table.html
TablePartList(count = NULL, tablePart = list(), ...)
TablePartList(count = NULL, tablePart = list(), ...)
count |
count |
tablePart |
tablePart |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TablePartList() ## End(Not run)
## Not run: TablePartList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.table.html
TableStyle( name = NULL, pivot = NULL, table = NULL, count = NULL, tableStyleElement = list(), ... )
TableStyle( name = NULL, pivot = NULL, table = NULL, count = NULL, tableStyleElement = list(), ... )
name |
name |
pivot |
pivot |
table |
table |
count |
count |
tableStyleElement |
tableStyleElement |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TableStyle(name = "name") ## End(Not run)
## Not run: TableStyle(name = "name") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.table.html
TableStyleElement(type = NULL, size = NULL, dxfId = NULL, ...)
TableStyleElement(type = NULL, size = NULL, dxfId = NULL, ...)
type |
type |
size |
size |
dxfId |
dxfId |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TableStyleElement(type = "secondSubtotalRow") ## End(Not run)
## Not run: TableStyleElement(type = "secondSubtotalRow") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.table.html
TableStyleInfo( name = NULL, showFirstColumn = NULL, showLastColumn = NULL, showRowStripes = NULL, showColumnStripes = NULL, ... )
TableStyleInfo( name = NULL, showFirstColumn = NULL, showLastColumn = NULL, showRowStripes = NULL, showColumnStripes = NULL, ... )
name |
name |
showFirstColumn |
showFirstColumn |
showLastColumn |
showLastColumn |
showRowStripes |
showRowStripes |
showColumnStripes |
showColumnStripes |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TableStyleInfo() ## End(Not run)
## Not run: TableStyleInfo() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.table.html
TableStyleList( count = NULL, defaultTableStyle = "TableStyleMedium9", defaultPivotStyle = "PivotStyleLight16", tableStyle = list(), ... )
TableStyleList( count = NULL, defaultTableStyle = "TableStyleMedium9", defaultPivotStyle = "PivotStyleLight16", tableStyle = list(), ... )
count |
count |
defaultTableStyle |
defaultTableStyle |
defaultPivotStyle |
defaultPivotStyle |
tableStyle |
tableStyle |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TableStyleList() ## End(Not run)
## Not run: TableStyleList() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.axis.html
TextAxis( auto = NULL, lblAlgn = NULL, lblOffset = 100L, tickLblSkip = NULL, tickMarkSkip = NULL, noMultiLvlLbl = NULL, extLst = NULL, ... )
TextAxis( auto = NULL, lblAlgn = NULL, lblOffset = 100L, tickLblSkip = NULL, tickMarkSkip = NULL, noMultiLvlLbl = NULL, extLst = NULL, ... )
auto |
auto |
lblAlgn |
lblAlgn |
lblOffset |
lblOffset |
tickLblSkip |
tickLblSkip |
tickMarkSkip |
tickMarkSkip |
noMultiLvlLbl |
noMultiLvlLbl |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TextAxis() ## End(Not run)
## Not run: TextAxis() ## End(Not run)
Represents text string in a specific format
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.rich_text.html
TextBlock(font, text, ...)
TextBlock(font, text, ...)
font |
font |
text |
text |
... |
Additional arguments, i.e. kwargs. |
This class is used as part of constructing a rich text strings.
An openpyxl Python object.
## Not run: TextBlock(font = InlineFont(), text = "text") ## End(Not run)
## Not run: TextBlock(font = InlineFont(), text = "text") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
TextField(id = NULL, type = NULL, rPr = NULL, pPr = NULL, t = NULL, ...)
TextField(id = NULL, type = NULL, rPr = NULL, pPr = NULL, t = NULL, ...)
id |
id |
type |
type |
rPr |
rPr |
pPr |
pPr |
t |
t |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TextField(id = "id") ## End(Not run)
## Not run: TextField(id = "id") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.text.html
TextNormalAutofit(fontScale = NULL, lnSpcReduction = NULL, ...)
TextNormalAutofit(fontScale = NULL, lnSpcReduction = NULL, ...)
fontScale |
fontScale |
lnSpcReduction |
lnSpcReduction |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TextNormalAutofit(fontScale = 1L, lnSpcReduction = 1L) ## End(Not run)
## Not run: TextNormalAutofit(fontScale = 1L, lnSpcReduction = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.effect.html
TintEffect(hue = 0L, amt = 0L, ...)
TintEffect(hue = 0L, amt = 0L, ...)
hue |
hue |
amt |
amt |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TintEffect() ## End(Not run)
## Not run: TintEffect() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.title.html
Title( tx = NULL, layout = NULL, overlay = NULL, spPr = NULL, txPr = NULL, extLst = NULL, ... )
Title( tx = NULL, layout = NULL, overlay = NULL, spPr = NULL, txPr = NULL, extLst = NULL, ... )
tx |
tx |
layout |
layout |
overlay |
overlay |
spPr |
spPr |
txPr |
txPr |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Title() ## End(Not run)
## Not run: Title() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.title.html
title_maker(text, ...)
title_maker(text, ...)
text |
text |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: title_maker(text = "text") ## End(Not run)
## Not run: title_maker(text = "text") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.title.html
TitleDescriptor(...)
TitleDescriptor(...)
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TitleDescriptor() ## End(Not run)
## Not run: TitleDescriptor() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
Transform2D( rot = NULL, flipH = NULL, flipV = NULL, off = NULL, ext = NULL, chOff = NULL, chExt = NULL, ... )
Transform2D( rot = NULL, flipH = NULL, flipV = NULL, off = NULL, ext = NULL, chOff = NULL, chExt = NULL, ... )
rot |
rot |
flipH |
flipH |
flipV |
flipV |
off |
off |
ext |
ext |
chOff |
chOff |
chExt |
chExt |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Transform2D() ## End(Not run)
## Not run: Transform2D() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.trendline.html
Trendline( name = NULL, spPr = NULL, trendlineType = "linear", order = NULL, period = NULL, forward = NULL, backward = NULL, intercept = NULL, dispRSqr = NULL, dispEq = NULL, trendlineLbl = NULL, extLst = NULL, ... )
Trendline( name = NULL, spPr = NULL, trendlineType = "linear", order = NULL, period = NULL, forward = NULL, backward = NULL, intercept = NULL, dispRSqr = NULL, dispEq = NULL, trendlineLbl = NULL, extLst = NULL, ... )
name |
name |
spPr |
spPr |
trendlineType |
trendlineType |
order |
order |
period |
period |
forward |
forward |
backward |
backward |
intercept |
intercept |
dispRSqr |
dispRSqr |
dispEq |
dispEq |
trendlineLbl |
trendlineLbl |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Trendline() ## End(Not run)
## Not run: Trendline() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.trendline.html
TrendlineLabel( layout = NULL, tx = NULL, numFmt = NULL, spPr = NULL, txPr = NULL, extLst = NULL, ... )
TrendlineLabel( layout = NULL, tx = NULL, numFmt = NULL, spPr = NULL, txPr = NULL, extLst = NULL, ... )
layout |
layout |
tx |
tx |
numFmt |
numFmt |
spPr |
spPr |
txPr |
txPr |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TrendlineLabel() ## End(Not run)
## Not run: TrendlineLabel() ## End(Not run)
Note that the argument '_from' has been transformed to 'from'.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.spreadsheet_drawing.html
TwoCellAnchor(editAs = NULL, from = NULL, to = NULL, ...)
TwoCellAnchor(editAs = NULL, from = NULL, to = NULL, ...)
editAs |
editAs |
from |
_from |
to |
to |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: TwoCellAnchor() ## End(Not run)
## Not run: TwoCellAnchor() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.updown_bars.html
UpDownBars(gapWidth = 150L, upBars = NULL, downBars = NULL, extLst = NULL, ...)
UpDownBars(gapWidth = 150L, upBars = NULL, downBars = NULL, extLst = NULL, ...)
gapWidth |
gapWidth |
upBars |
upBars |
downBars |
downBars |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: UpDownBars() ## End(Not run)
## Not run: UpDownBars() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.formatting.rule.html
Expected type depends upon type attribute of parent :-(
Most values should be numeric BUT they can also be cell references
ValueDescriptor(...)
ValueDescriptor(...)
... |
Additional arguments, i.e. kwargs |
An openpyxl Python object.
## Not run: ValueDescriptor() ## End(Not run)
## Not run: ValueDescriptor() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.geometry.html
Vector3D(dx = NULL, dy = NULL, dz = NULL, ...)
Vector3D(dx = NULL, dy = NULL, dz = NULL, ...)
dx |
dx |
dy |
dy |
dz |
dz |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Vector3D(dx = 1L, dy = 1L, dz = 1L) ## End(Not run)
## Not run: Vector3D(dx = 1L, dy = 1L, dz = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.web.html
WebPublishing( css = NULL, thicket = NULL, longFileNames = NULL, vml = NULL, allowPng = NULL, targetScreenSize = "800x600", dpi = NULL, codePage = NULL, characterSet = NULL, ... )
WebPublishing( css = NULL, thicket = NULL, longFileNames = NULL, vml = NULL, allowPng = NULL, targetScreenSize = "800x600", dpi = NULL, codePage = NULL, characterSet = NULL, ... )
css |
css |
thicket |
thicket |
longFileNames |
longFileNames |
vml |
vml |
allowPng |
allowPng |
targetScreenSize |
targetScreenSize |
dpi |
dpi |
codePage |
codePage |
characterSet |
characterSet |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: WebPublishing() ## End(Not run)
## Not run: WebPublishing() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chartsheet.publish.html
WebPublishItem( id = NULL, divId = NULL, sourceType = NULL, sourceRef = NULL, sourceObject = NULL, destinationFile = NULL, title = NULL, autoRepublish = NULL, ... )
WebPublishItem( id = NULL, divId = NULL, sourceType = NULL, sourceRef = NULL, sourceObject = NULL, destinationFile = NULL, title = NULL, autoRepublish = NULL, ... )
id |
id |
divId |
divId |
sourceType |
sourceType |
sourceRef |
sourceRef |
sourceObject |
sourceObject |
destinationFile |
destinationFile |
title |
title |
autoRepublish |
autoRepublish |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: WebPublishItem( id = 1L, divId = "divId", sourceType = "chart", sourceRef = "sourceRef", destinationFile = "destinationFile" ) ## End(Not run)
## Not run: WebPublishItem( id = 1L, divId = "divId", sourceType = "chart", sourceRef = "sourceRef", destinationFile = "destinationFile" ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.web.html
WebPublishObject( id = NULL, divId = NULL, sourceObject = NULL, destinationFile = NULL, title = NULL, autoRepublish = NULL, ... )
WebPublishObject( id = NULL, divId = NULL, sourceObject = NULL, destinationFile = NULL, title = NULL, autoRepublish = NULL, ... )
id |
id |
divId |
divId |
sourceObject |
sourceObject |
destinationFile |
destinationFile |
title |
title |
autoRepublish |
autoRepublish |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: WebPublishObject( id = 1L, divId = "divId", destinationFile = "destinationFile" ) ## End(Not run)
## Not run: WebPublishObject( id = 1L, divId = "divId", destinationFile = "destinationFile" ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.web.html
WebPublishObjectList(count = NULL, webPublishObject = list(), ...)
WebPublishObjectList(count = NULL, webPublishObject = list(), ...)
count |
count |
webPublishObject |
webPublishObject |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: WebPublishObjectList() ## End(Not run)
## Not run: WebPublishObjectList() ## End(Not run)
Workbook(write_only = FALSE, iso_dates = FALSE, ...)
Workbook(write_only = FALSE, iso_dates = FALSE, ...)
write_only |
write_only |
iso_dates |
iso_dates |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: Workbook() ## End(Not run)
## Not run: Workbook() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.reader.workbook.html
WorkbookParser(archive, workbook_part_name, keep_links = TRUE, ...)
WorkbookParser(archive, workbook_part_name, keep_links = TRUE, ...)
archive |
archive |
workbook_part_name |
workbook_part_name |
keep_links |
keep_links |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: WorkbookParser( archive = "archive", workbook_part_name = "workbook_part_name" ) ## End(Not run)
## Not run: WorkbookParser( archive = "archive", workbook_part_name = "workbook_part_name" ) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.properties.html
WorkbookProperties( date1904 = NULL, dateCompatibility = NULL, showObjects = NULL, showBorderUnselectedTables = NULL, filterPrivacy = NULL, promptedSolutions = NULL, showInkAnnotation = NULL, backupFile = NULL, saveExternalLinkValues = NULL, updateLinks = NULL, codeName = NULL, hidePivotFieldList = NULL, showPivotChartFilter = NULL, allowRefreshQuery = NULL, publishItems = NULL, checkCompatibility = NULL, autoCompressPictures = NULL, refreshAllConnections = NULL, defaultThemeVersion = NULL, ... )
WorkbookProperties( date1904 = NULL, dateCompatibility = NULL, showObjects = NULL, showBorderUnselectedTables = NULL, filterPrivacy = NULL, promptedSolutions = NULL, showInkAnnotation = NULL, backupFile = NULL, saveExternalLinkValues = NULL, updateLinks = NULL, codeName = NULL, hidePivotFieldList = NULL, showPivotChartFilter = NULL, allowRefreshQuery = NULL, publishItems = NULL, checkCompatibility = NULL, autoCompressPictures = NULL, refreshAllConnections = NULL, defaultThemeVersion = NULL, ... )
date1904 |
date1904 |
dateCompatibility |
dateCompatibility |
showObjects |
showObjects |
showBorderUnselectedTables |
showBorderUnselectedTables |
filterPrivacy |
filterPrivacy |
promptedSolutions |
promptedSolutions |
showInkAnnotation |
showInkAnnotation |
backupFile |
backupFile |
saveExternalLinkValues |
saveExternalLinkValues |
updateLinks |
updateLinks |
codeName |
codeName |
hidePivotFieldList |
hidePivotFieldList |
showPivotChartFilter |
showPivotChartFilter |
allowRefreshQuery |
allowRefreshQuery |
publishItems |
publishItems |
checkCompatibility |
checkCompatibility |
autoCompressPictures |
autoCompressPictures |
refreshAllConnections |
refreshAllConnections |
defaultThemeVersion |
defaultThemeVersion |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: WorkbookProperties() ## End(Not run)
## Not run: WorkbookProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.workbook.protection.html
WorkbookProtection( workbookPassword = NULL, workbookPasswordCharacterSet = NULL, revisionsPassword = NULL, revisionsPasswordCharacterSet = NULL, lockStructure = NULL, lockWindows = NULL, lockRevision = NULL, revisionsAlgorithmName = NULL, revisionsHashValue = NULL, revisionsSaltValue = NULL, revisionsSpinCount = NULL, workbookAlgorithmName = NULL, workbookHashValue = NULL, workbookSaltValue = NULL, workbookSpinCount = NULL, ... )
WorkbookProtection( workbookPassword = NULL, workbookPasswordCharacterSet = NULL, revisionsPassword = NULL, revisionsPasswordCharacterSet = NULL, lockStructure = NULL, lockWindows = NULL, lockRevision = NULL, revisionsAlgorithmName = NULL, revisionsHashValue = NULL, revisionsSaltValue = NULL, revisionsSpinCount = NULL, workbookAlgorithmName = NULL, workbookHashValue = NULL, workbookSaltValue = NULL, workbookSpinCount = NULL, ... )
workbookPassword |
workbookPassword |
workbookPasswordCharacterSet |
workbookPasswordCharacterSet |
revisionsPassword |
revisionsPassword |
revisionsPasswordCharacterSet |
revisionsPasswordCharacterSet |
lockStructure |
lockStructure |
lockWindows |
lockWindows |
lockRevision |
lockRevision |
revisionsAlgorithmName |
revisionsAlgorithmName |
revisionsHashValue |
revisionsHashValue |
revisionsSaltValue |
revisionsSaltValue |
revisionsSpinCount |
revisionsSpinCount |
workbookAlgorithmName |
workbookAlgorithmName |
workbookHashValue |
workbookHashValue |
workbookSaltValue |
workbookSaltValue |
workbookSpinCount |
workbookSpinCount |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: WorkbookProtection() ## End(Not run)
## Not run: WorkbookProtection() ## End(Not run)
Copy the values, styles, dimensions, merged cells, margins, and
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.copier.html
WorksheetCopy(source_worksheet, target_worksheet, ...)
WorksheetCopy(source_worksheet, target_worksheet, ...)
source_worksheet |
source_worksheet |
target_worksheet |
target_worksheet |
... |
Additional arguments, i.e. kwargs. |
print/page setup from one worksheet to another within the same workbook.
An openpyxl Python object.
## Not run: wb <- Workbook() ws1 <- wb$active ws2 <- wb$create_sheet("Mysheet") WorksheetCopy(source_worksheet = ws1, target_worksheet = ws2) ## End(Not run)
## Not run: wb <- Workbook() ws1 <- wb$active ws2 <- wb$create_sheet("Mysheet") WorksheetCopy(source_worksheet = ws1, target_worksheet = ws2) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.properties.html
WorksheetProperties( codeName = NULL, enableFormatConditionsCalculation = NULL, filterMode = NULL, published = NULL, syncHorizontal = NULL, syncRef = NULL, syncVertical = NULL, transitionEvaluation = NULL, transitionEntry = NULL, tabColor = NULL, outlinePr = NULL, pageSetUpPr = NULL, ... )
WorksheetProperties( codeName = NULL, enableFormatConditionsCalculation = NULL, filterMode = NULL, published = NULL, syncHorizontal = NULL, syncRef = NULL, syncVertical = NULL, transitionEvaluation = NULL, transitionEntry = NULL, tabColor = NULL, outlinePr = NULL, pageSetUpPr = NULL, ... )
codeName |
codeName |
enableFormatConditionsCalculation |
enableFormatConditionsCalculation |
filterMode |
filterMode |
published |
published |
syncHorizontal |
syncHorizontal |
syncRef |
syncRef |
syncVertical |
syncVertical |
transitionEvaluation |
transitionEvaluation |
transitionEntry |
transitionEntry |
tabColor |
tabColor |
outlinePr |
outlinePr |
pageSetUpPr |
pageSetUpPr |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: WorksheetProperties() ## End(Not run)
## Not run: WorksheetProperties() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.styles.stylesheet.html
write_stylesheet(wb, ...)
write_stylesheet(wb, ...)
wb |
wb |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: wb <- Workbook() write_stylesheet(wb = wb) ## End(Not run)
## Not run: wb <- Workbook() write_stylesheet(wb = wb) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.cell.html
WriteOnlyCell(ws = NULL, value = NULL, ...)
WriteOnlyCell(ws = NULL, value = NULL, ...)
ws |
ws |
value |
value |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: wb <- Workbook() WriteOnlyCell(ws = wb$active) ## End(Not run)
## Not run: wb <- Workbook() WriteOnlyCell(ws = wb$active) ## End(Not run)
Values must be of type <class 'openpyxl.chart.axis.TextAxis'>
x_axis(py_obj, ...)
x_axis(py_obj, ...)
py_obj |
py_obj |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: BarChart(type = "col") |> x_axis(title = "X axis title") ## End(Not run)
## Not run: BarChart(type = "col") |> x_axis(title = "X axis title") ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.xdr.html
XDRPoint2D(x = NULL, y = NULL, ...)
XDRPoint2D(x = NULL, y = NULL, ...)
x |
x |
y |
y |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: XDRPoint2D(x = 1L, y = 1L) ## End(Not run)
## Not run: XDRPoint2D(x = 1L, y = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.xdr.html
XDRPositiveSize2D(cx = NULL, cy = NULL, ...)
XDRPositiveSize2D(cx = NULL, cy = NULL, ...)
cx |
cx |
cy |
cy |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: XDRPositiveSize2D(cx = 1L, cy = 1L) ## End(Not run)
## Not run: XDRPositiveSize2D(cx = 1L, cy = 1L) ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.drawing.xdr.html
XDRTransform2D( rot = NULL, flipH = NULL, flipV = NULL, off = NULL, ext = NULL, chOff = NULL, chExt = NULL, ... )
XDRTransform2D( rot = NULL, flipH = NULL, flipV = NULL, off = NULL, ext = NULL, chOff = NULL, chExt = NULL, ... )
rot |
rot |
flipH |
flipH |
flipV |
flipV |
off |
off |
ext |
ext |
chOff |
chOff |
chExt |
chExt |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: XDRTransform2D() ## End(Not run)
## Not run: XDRTransform2D() ## End(Not run)
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.table.html
XMLColumnProps( mapId = NULL, xpath = NULL, denormalized = NULL, xmlDataType = NULL, extLst = NULL, ... )
XMLColumnProps( mapId = NULL, xpath = NULL, denormalized = NULL, xmlDataType = NULL, extLst = NULL, ... )
mapId |
mapId |
xpath |
xpath |
denormalized |
denormalized |
xmlDataType |
xmlDataType |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: XMLColumnProps(mapId = 1L, xpath = "xpath", xmlDataType = "xmlDataType") ## End(Not run)
## Not run: XMLColumnProps(mapId = 1L, xpath = "xpath", xmlDataType = "xmlDataType") ## End(Not run)
Dedicated series for charts that have x and y series
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.chart.series.html
XYSeries( idx = 0L, order = 0L, tx = NULL, spPr = NULL, pictureOptions = NULL, dPt = list(), dLbls = NULL, trendline = NULL, errBars = NULL, cat = NULL, val = NULL, invertIfNegative = NULL, shape = NULL, xVal = NULL, yVal = NULL, bubbleSize = NULL, bubble3D = NULL, marker = NULL, smooth = NULL, explosion = NULL, extLst = NULL, ... )
XYSeries( idx = 0L, order = 0L, tx = NULL, spPr = NULL, pictureOptions = NULL, dPt = list(), dLbls = NULL, trendline = NULL, errBars = NULL, cat = NULL, val = NULL, invertIfNegative = NULL, shape = NULL, xVal = NULL, yVal = NULL, bubbleSize = NULL, bubble3D = NULL, marker = NULL, smooth = NULL, explosion = NULL, extLst = NULL, ... )
idx |
idx |
order |
order |
tx |
tx |
spPr |
spPr |
pictureOptions |
pictureOptions |
dPt |
dPt |
dLbls |
dLbls |
trendline |
trendline |
errBars |
errBars |
cat |
cat |
val |
val |
invertIfNegative |
invertIfNegative |
shape |
shape |
xVal |
xVal |
yVal |
yVal |
bubbleSize |
bubbleSize |
bubble3D |
bubble3D |
marker |
marker |
smooth |
smooth |
explosion |
explosion |
extLst |
extLst |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: XYSeries() ## End(Not run)
## Not run: XYSeries() ## End(Not run)
Values must be of type <class 'openpyxl.chart.axis.NumericAxis'>
y_axis(py_obj, ...)
y_axis(py_obj, ...)
py_obj |
py_obj |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run: BarChart(type = "col") |> y_axis(title = "Y axis title") ## End(Not run)
## Not run: BarChart(type = "col") |> y_axis(title = "Y axis title") ## End(Not run)