ColorAdjustmentSet

Description

The ColorAdjustmentSet element serves as a container for one or more ColorAdjustment elements.

Context

Table 1 lists the elements that can contain, or be contained by, a ColorAdjustmentSet element.

Table 1. Context
Contained by Element Contains

Bitmap

ColorAdjustmentSet

ColorAdjustment

Attributes

The ColorAdjustmentSet element has no attributes.

Example

This example shows a ColorAdjustmentSet element that contains two ColorAdjustment elements.



<?xml version="1.0" encoding="UTF-8"?>
<NamedStyle
    version="MXP_WorkSpace_1_5"
    xmlns="http://www.mapinfo.com/mxp">
    <Interior fill-opacity="1" fill="(#id7)">
        <Defs>
            <Pattern id="id7">
                <Bitmap uri="mapinfo:brush 2">
                    <ColorAdjustmentSet>
                        <ColorAdjustment
                            color-1="nonWhite"
                            color-2="rgb(224,255,176)"
                            opacity="1"/>
                        <ColorAdjustment
                            color-1="white"
                            color-2="white"
                            opacity="1"/>
                    </ColorAdjustmentSet>
                </Bitmap>
            </Pattern>
        </Defs>
    </Interior>
</NamedStyle>