Partager via


XPS_COLOR

Structure qui décrit une valeur de couleur unique.

typedef union switch (XPS_COLOR_TYPE colorType) value
{
    case XPS_COLOR_TYPE_SRGB:
        struct {
            byte alpha, red, green, blue;
        } sRGB;
    case XPS_COLOR_TYPE_SCRGB:
        struct {
            FLOAT alpha, red, green, blue;
        } scRGB;
    case XPS_COLOR_TYPE_CONTEXT:
        struct {
            byte channelCount;
            FLOAT channels[9];
        } context;
} XPS_COLOR;

Notes

Le format de la structure dépend de la valeur de colorType.

XPS_COLOR_TYPE_SRGB
XPS_COLOR_TYPE_SCRGB
XPS_COLOR_TYPE_CONTEXT

Spécifications

Condition requise Value
Client minimal pris en charge
Windows 7, Windows Vista avec SP2 et Mise à jour de plateforme pour Windows Vista [applications de bureau | applications UWP]
Serveur minimal pris en charge
Windows Server 2008 R2, Windows Server 2008 avec SP2 et Mise à jour de plateforme pour Windows Server 2008 [applications de bureau | applications UWP]
En-tête
Xpsobjectmodel.h
IDL
XpsObjectModel.idl

Voir aussi

XML Paper Specification