<?xml version="1.0"?>
<flash_datatype version="1.0">
	<datatype_definition dialogID="String-dialog" name="String">
		<properties>
			<!-- standard properties that all datatypes have. These can be edited
			in the Inspector's Schema tab. -->			
			<property id="category" default=""/>		
			<property id="base" default="String"/> 		
			<property id="formatter" default=""/>			
			<property id="defaultValue" default=""/> 			
			<property id="defaultLabel" default=""/>
			<property id="defaultUIControl" default=""/> 

			<!-- properties that are specific to this datatype. These can be edited
			in the "Validation Settings" dialog, below. -->			
			<property id="minLength" default=""/>			
			<property id="maxLength" default=""/> 

		</properties>

		<dialog id="String-dialog" title="Überprüfungseinstellungen für String" buttons="accept, cancel">
		<grid>		
		 	<columns>
 				<column/> 
   				<column/>
  			</columns>

			<row>
				<label value="           Mindestlänge  " control="minLength"/> 
					<textbox id="minLength"/>
			</row>
			<row>
				<label value="           Max. Länge  " control="maxLength"/> 
					<textbox id="maxLength"/>
			</row>            
		</grid>
		</dialog>

		<actionscript class="mx.data.types.Str"/>
	</datatype_definition>
</flash_datatype>
 
