protected override void BeginProcessing()
 {
     InnerFormatShapeCommand implementation = (InnerFormatShapeCommand) base.implementation;
     FormattingCommandLineParameters commandLineParameters = this.GetCommandLineParameters();
     implementation.SetCommandLineParameters(commandLineParameters);
     base.BeginProcessing();
 }
        internal override void BeginProcessing()
        {
            base.BeginProcessing();

            // Get the Format Enumeration Limit.
            _enumerationLimit = InnerFormatShapeCommand.FormatEnumerationLimit();

            _expressionFactory = new MshExpressionFactory();

            _formatObjectDeserializer = new FormatObjectDeserializer(this.TerminatingErrorContext);
        }
        /// <summary>
        ///
        /// </summary>
        protected override void BeginProcessing()
        {
            InnerFormatShapeCommand innerFormatCommand =
                (InnerFormatShapeCommand)this.implementation;

            // read command line switches and pass them to the inner command
            FormattingCommandLineParameters parameters = GetCommandLineParameters();

            innerFormatCommand.SetCommandLineParameters(parameters);

            // must call base class for further processing
            base.BeginProcessing();
        }