<κλάση header="doc-nav" aria-label="Πλοήγηση τεκμηρίωσης"> Τεκμηρίωση HotXLS <κλάση nav="doc-links"> Περιεχόμενα Αρχική Επισκόπηση IXLSWorkbook TCondFormat <κλάση div="nav topic-quick-nav" aria-label="Topic shortcuts"> Αρχική Περιεχόμενα Επισκόπηση

AddCondFormatDataBar μέθοδος

<κλάση div="indent"> <κλάση div="txt"> Adds an Excel 2007+ Data Bar conditional formatting rule over a cell range, returning the new TCondFormatRule so the rule's per-stop tuning can be refined before save. Internally creates a CONDFMT12 block and a CF12 record on BIFF8 save; for XLSX output the same rule is rendered through the OOXML <cfRule type="dataBar"> element. (Available since v2.34.0.)

Σύνταξη

<κλάση div="indent"> <κλάση div="txt"> function AddCondFormatDataBar(const ARange: WideString;
  AColor: LongWord;
  AMinKind: TXLSCfValueKind = cfvMinOfRange; const AMinValue: WideString = '';
  AMaxKind: TXLSCfValueKind = cfvMaxOfRange; const AMaxValue: WideString = ''): TCondFormatRule; <κλάση table="synd"> <κλάση td="syni">ARange <κλάση td="synid">WideString. Sqref string, e.g. 'A1:A10' or 'B2:C20' <κλάση td="syni">AColor <κλάση td="synid">LongWord. Bar fill color in Delphi BGR format (R in the low byte). For a blue fill use $00FF0000; for green $0000FF00 <κλάση td="syni">AMinKind / AMaxKind <κλάση td="synid">TXLSCfValueKind. Threshold types: cfvNumber, cfvMinOfRange, cfvMaxOfRange, cfvPercent, cfvPercentile, cfvFormula, cfvAutoMin, cfvAutoMax. Defaults map min→cfvMinOfRange and max→cfvMaxOfRange, matching Excel's default "automatic" bar bounds <κλάση td="syni">AMinValue / AMaxValue <κλάση td="synid">WideString. Threshold literal (numeric text for cfvNumber/cfvPercent/cfvPercentile, A1-range or formula text for cfvFormula). Ignored for cfvMinOfRange / cfvMaxOfRange / cfvAutoMin / cfvAutoMax

Παράδειγμα

<κλάση div="indent"> <κλάση div="txt"> This example adds a blue data bar over A1:A10 using the default min/max-of-range bounds
<κλάση pre="code"> Sheet.AddCondFormatDataBar('A1:A10', $00FF0000);

Δείτε επίσης

<κλάση div="indent"> <κλάση div="txt"> AddCondFormatColorScale2
AddCondFormatColorScale3
AddCondFormatIconSet
TCondFormat / TCondFormatRule classes <κλάση footer="reference-footer">Copyright © 2010-2026 losLab Software