﻿package com.adobe.captivate.widgets
{
	/**
		* This class describes the properties of the container containg the widget.
		
		* @see CPMovieHandle#getContainerProps
	*/
	public class CPContainerProperties
	{
		/**
     	* @private
     	*/
		public function CPContainerProperties(containerTypeVal:String="")
		{
			this._containerType = containerTypeVal;
		}
		/**
     	* @private
     	*/
		private var _containerType:String;

		/**
     		* This function returns a string containing the type of the container .
			* The String is one of Slide, Slidelet, Zoom Destination Slide, Zoom Destination Slidelet, Movie (in case of rest of project widget)
		*/
		public function get containerType():String
		{
			return _containerType;
		}
	}
}
