Exemple #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="NuGenOrientationControlActionList"/> class.
        /// </summary>
        /// <param name="orientationControl"></param>
        /// <exception cref="ArgumentNullException">
        /// <para>
        ///		<paramref name="orientationControl"/> is <see langword="null"/>.
        /// </para>
        /// </exception>
        public NuGenOrientationControlActionList(NuGenOrientationControlBase orientationControl)
            : base(orientationControl)
        {
            if (orientationControl == null)
            {
                throw new ArgumentNullException("orientationControl");
            }

            _orientationControl = orientationControl;
        }
		/// <summary>
		/// Initializes a new instance of the <see cref="NuGenOrientationControlActionList"/> class.
		/// </summary>
		/// <param name="orientationControl"></param>
		/// <exception cref="ArgumentNullException">
		/// <para>
		///		<paramref name="orientationControl"/> is <see langword="null"/>.
		/// </para>
		/// </exception>
		public NuGenOrientationControlActionList(NuGenOrientationControlBase orientationControl)
	        : base(orientationControl)
	    {
			if (orientationControl == null)
			{
				throw new ArgumentNullException("orientationControl");
			}

			_orientationControl = orientationControl;
	    }