XLFormatMBS constants

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

Back to XLFormatMBS class.

Fillpattern Style Constants

XLFormatMBS.FillPatternDiagcrosshatch = 9

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternDiagstripe = 8

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternGray12P5 = 17

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternGray25 = 4

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternGray50 = 2

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternGray6P25 = 18

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternGray75 = 3

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternHorstripe = 5

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternNone = 0

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternRevdiagstripe = 7

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternSolid = 1

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.
Example
// define a format for red fill
Dim redBackgroundFormat As XLFormatMBS = book.AddFormat
Dim c As Color = &cFF0000
// will give back numeric value of color for RGB mode or color index
Dim n As Integer = book.PackColor(c)
// we set forecolor of the pattern to fill background!
redBackgroundFormat.PatternForegroundColor = n
redBackgroundFormat.PatternBackgroundColor = n
redBackgroundFormat.FillPattern = XLFormatMBS.FillPatternSolid

Dim row As Integer = 5 // 6th row
Dim col As Integer = 1 // Column B
Dim value As Double = 123

Call sheet.WriteNumber row, col, value, redBackgroundFormat

XLFormatMBS.FillPatternThickdiagcrosshatch = 10

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternThindiagcrosshatch = 16

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternThindiagstripe = 14

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternThinhorcrosshatch = 15

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternThinhorstripe = 11

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternThinrevdiagstripe = 13

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternThinverstripe = 12

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

XLFormatMBS.FillPatternVerstripe = 6

Type Topic Plugin Version
const XL MBS XL Plugin 11.3
One of the fill pattern style constants.

The items on this page are in the following plugins: MBS XL Plugin.


💬 Ask a question or report a problem