Description
Specifies the polygon greeking thresholds.
Diagram
Overview
|
POLYGON
Specifies the polygon greeking thresholds.
|
color optional
Specifies the default greeking color for polygon geometry.
|
|
greeking optional Restriction of xs:string
Flag that determines whether polygon geometry will be greeked.
|
|
threshold1 optional Restriction of xs:int
Specifies the pixel threshold for drawing polygon features as single pixels.
|
|
threshold2 optional Restriction of xs:int
Specifies the pixel threshold for drawing polygon features as rectangles.
|
|
threshold3 optional Restriction of xs:int
Specifies the pixel threshold for drawing polygon features as greeking colored polygons with no outlines.
|
|
threshold4 optional Restriction of xs:int
Specifies the pixel threshold for drawing polygon features using their actual symbols' greeking styles.
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
color | | optional | 128,128,128 | | Specifies the default greeking color for polygon geometry. |
greeking | Restriction of xs:string | optional | true | | Flag that determines whether polygon geometry will be greeked. |
threshold1 | Restriction of xs:int | optional | 1 | | Specifies the pixel threshold for drawing polygon features as single pixels. |
threshold2 | Restriction of xs:int | optional | 3 | | Specifies the pixel threshold for drawing polygon features as rectangles. |
threshold3 | Restriction of xs:int | optional | 5 | | Specifies the pixel threshold for drawing polygon features as greeking colored polygons with no outlines. |
threshold4 | Restriction of xs:int | optional | 8 | | Specifies the pixel threshold for drawing polygon features using their actual symbols' greeking styles. |
Remarks
Examples
Restrictions
Each threshold must have a greater value than the one before for greeking to work properly (for example, if threshold1 is 2, then threshold2 must be 3 or greater).
Source
<xs:element name="POLYGON" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Specifies the polygon greeking thresholds.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute default="128,128,128" name="color">
<xs:annotation>
<xs:documentation>Specifies the default greeking color for polygon geometry.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute default="true" name="greeking">
<xs:annotation>
<xs:documentation>Flag that determines whether polygon geometry will be greeked.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="1" name="threshold1">
<xs:annotation>
<xs:documentation>Specifies the pixel threshold for drawing polygon features as single pixels.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="3" name="threshold2">
<xs:annotation>
<xs:documentation>Specifies the pixel threshold for drawing polygon features as rectangles.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="5" name="threshold3">
<xs:annotation>
<xs:documentation>Specifies the pixel threshold for drawing polygon features as greeking colored polygons with no outlines.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="8" name="threshold4">
<xs:annotation>
<xs:documentation>Specifies the pixel threshold for drawing polygon features using their actual symbols' greeking styles.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also