Class Databar (Excel VBA)
The class Databar represents a data bar conditional formating rule. Applying a data bar to a range helps you see the value of a cell relative to other cells.
The main procedure of class Databar is Delete
Methods
This is the main method of the Databar class
Delete - Deletes the specified conditional formatting rule object.
Properties
AppliesTo returns a Range object specifying the cell range to which the formatting rule is applied.
AxisColor returns the color of the axis for cells with conditional formatting as data bars. Read-only.
AxisPosition returns or sets the position of the axis of the data bars specified by a conditional formatting rule.
Range("A1:A10").Select
Range("A1:A10").Activate
Set myDataBar = Selection.FormatConditions.AddDatabar
myDataBar.AxisPosition = xlDataBarAxisMidpoint
BarBorder returns an object that specifies the border of a data bar.
Range("A1:A10").Select
Range("A1:A10").Activate
Set myDataBar = Selection.FormatConditions.AddDatabar
With myDataBar.BarBorder
.Type = xlDataBarBorderSolid
.Color.ThemeColor = xlThemeColorAccent2
.Color.TintAndShade = 0
End With
BarColor returns a FormatColor formatcolor that you can use to modify the color of the bars in a data bar conditional format.
BarFillType returns or sets how a data bar is filled with color.
Range("A1:A10").Select
Range("A1:A10").Activate
Set myDataBar = Selection.FormatConditions.AddDatabar
myDataBar.BarFillType = xlDataBarFillSolid
Direction returns or sets the direction that the databar is displayed.
Formula returns or sets a String representing a formula, which determines the values to which the data bar will be applied.
MaxPoint returns a ConditionValue object that specifies how the longest bar is evaluated for a data bar conditional format.
MinPoint returns a ConditionValue object that specifies how the shortest bar is evaluated for a data bar conditional format.
NegativeBarFormat returns the NegativeBarFormat object associated with a data bar conditional formatting rule.
Parent returns the parent object for the specified object. Read-only.
PercentMax returns or sets a Long value that specifies the length of the longest data bar as a percentage of cell width.
PercentMin returns or sets a Long value that specifies the length of the shortest data bar as a percentage of cell width.
Priority returns or sets the priority value of the conditional formatting rule. The priority determines the order of evaluation when multiple conditional formatting rules exist on a worksheet.
PTCondition returns a Boolean value indicating if the conditional format is being applied to a PivotTable.
ScopeType returns or sets one of the constants of the XlPivotConditionScope enumeration, which determines the scope of the conditional format when it is applied to a PivotTable.
ShowValue returns or sets a Boolean value that specifies if the value in the cell is displayed if the data bar conditional format is applied to the range.
StopIfTrue returns or sets a Boolean value that determines if additional formatting rules on the cell should be evaluated if the current rule evaluates to True.
Type returns one of the constants of the XlFormatConditionType enumeration, which specifies the type of conditional format.