SerializationContents Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the type of chart content to be serialized.
This enumeration supports a bitwise combination of its member values.
public enum class SerializationContents
[System.Flags]
public enum SerializationContents
[<System.Flags>]
type SerializationContents =
Public Enum SerializationContents
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Default | 1 | Serialize all non-default chart content. This includes appearance properties, series and their data points, axis minimums/maximums, and so forth. |
Data | 2 | Serialize data values from all chart series. Does not include appearance properties. |
Appearance | 4 | Serialize all appearance properties, such as color or line style, if they have non-default values. |
All | 7 | Serialize all chart information. This includes all appearance properties and data point values. |
Remarks
The SerializationContents enumeration represents the chart content type to be serialized. This enumeration is used with the Content property.