windowsforms-devexpress-dot-xtrapivotgrid-dot-pivotgridfieldtooltips.md
Provides access to the formatting settings applied to a field value tooltip.
Namespace : DevExpress.XtraPivotGrid
Assembly : DevExpress.XtraPivotGrid.v25.2.dll
NuGet Package : DevExpress.Win.PivotGrid
[XtraSerializableProperty(XtraSerializationVisibility.Content)]
public FormatInfo ValueFormat { get; }
<XtraSerializableProperty(XtraSerializationVisibility.Content)>
Public ReadOnly Property ValueFormat As FormatInfo
| Type | Description |
|---|---|
| FormatInfo |
A FormatInfo object that provides the formatting settings applied to a field value tooltip.
|
This property provides two different approaches to formatting values. The first is to use the format strings that are described in the Standard Numeric Format Strings , Custom Numeric Format Strings , Standard Date and Time Format Strings and Custom Date and Time Format Strings topics in MSDN.
You can also implement a custom formatter object to specify custom formatting rules of any complexity. Read the following topic for detailed information and examples: Data Formatting.
See Also