 Description
Description
Used to define the line fill symbol in a complex polygon symbol.
            
            
             Diagram
Diagram
             Overview
Overview
    
        
            |  | 
                    LINEFILL
                    
                        Used to define the line fill symbol in a complex polygon symbol.
                     
                    
                        
                            
                                |  | 
                                        angle optional Restriction of xs:double 
                                            Line angle in degrees clockwise.
                                         |  
                        
                            
                                |  | 
                                        separation optional Restriction of xs:int 
                                            Line symbol separation within fill in points.
                                         |  
                        
                            
                                |  | 
                                        offset optional xs:int 
                                            The offset in points (approx. 1/72 inch) the line fill will be shown away from the geometry it represents. The offset can be a positive (above/left) or negative (below/right) number.
                                         |  
                        
                            
                                |  | 
                                        Sequence
                                     
                                        
                                            
                                                
                                                    |  | 
                                                            COMPLEXLINESYMBOL
                                                            
                                                                Used to symbolize line features. Provides additional symbology options beyond SIMPLELINESYMBOL.
                                                             |  
                                            
                                                
                                                    |  | 
                                                            GROUPSYMBOL
                                                            
                                                                Used to symbolize features with multiple symbols acting as a single symbol (e.g., a freeway line symbol consists of a group of 3 line symbols).
                                                             |  |  | 
    
 Attributes
Attributes
| Name | Type | Use | Default | Fixed | Description | 
|---|
| angle | Restriction of xs:double | optional | 0.0 |  | Line angle in degrees clockwise. | 
| separation | Restriction of xs:int | optional | 5 |  | Line symbol separation within fill in points. | 
| offset | xs:int | optional | 0 |  | The offset in points (approx. 1/72 inch) the line fill will be shown away from the geometry it represents. The offset can be a positive (above/left) or negative (below/right) number. | 
 Examples
Examples
		
			
			
			
			 Source
Source
| <xs:element name="LINEFILL" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Used to define the line fill symbol in a complex polygon symbol.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="COMPLEXLINESYMBOL" />
      <xs:element ref="GROUPSYMBOL" />
      <xs:element ref="SIMPLELINESYMBOL" />
    </xs:sequence>
    <xs:attribute default="0.0" name="angle">
      <xs:annotation>
        <xs:documentation>Line angle in degrees clockwise.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:double">
          <xs:minInclusive value="0.0" />
          <xs:maxInclusive value="360.0" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute default="5" name="separation">
      <xs:annotation>
        <xs:documentation>Line symbol separation within fill in points.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:int">
          <xs:minInclusive value="1" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
    <xs:attribute default="0" name="offset" type="xs:int">
      <xs:annotation>
        <xs:documentation>The offset in points (approx. 1/72 inch) the line fill will be shown away from the geometry it represents. The offset can be a positive (above/left) or negative (below/right) number.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element> | 
 See Also
See Also