Layout Screenarea

Layout Screenarea

This tag is used to define the screen areas that the main area will horizontally be divided into.

Attributes

NameDescriptionValue
typeThe type of the screenarea. When the attribute is not defined the type is standard. When defined the only acceptable value is 'preview'.preview
nameThe name of the screenareaAny
leftscreenareaTakes the left side of the main area if there is a rightscreenarea otherwise it expands to the entire main area's width. Only one leftscreenarea can exist in a screenarea.

A list of sections that will be displayed in the left screen area

rightscreenareaTakes the right side of the main area if there is a leftscreenarea otherwise it takes the left side and covers only 50% of the entire main area's width. Only one rightscreenarea can exist in a screenare.A list of sections that will be displayed in the right screen area

Example

 Screenarea

 

Screenarea
<screenareas>
	<screenarea>
		<leftscreenarea>
			<sections>
				<section><id>secContactInformation</id></section> 
				<section><id>secAccountInformation</id></section> 
				<section><id>secBillingAddresses</id></section>
				<section><id>secSubscriptionAddresses</id></section>
				<section><id>secSubscriptionTerms</id></section>
				<section><id>secServicesAndInstalledItems</id></section>
				<section><id>secCommunications</id></section>
				<section><id>secLogInformation</id></section>
			</sections>
		</leftscreenarea>
	</screenarea>
	<screenarea>
		<type>preview</type>
		<name>Action Panel</name>
		<leftscreenarea>
			<sections>
				<section><id>secSubscriptionDetails</id></section>
			</sections>
		</leftscreenarea>
	</screenarea>
</screenareas>