コード例 #1
0
ファイル: CommandService.cs プロジェクト: radtek/Shopdrawing
        public void SetCommandProperty(string commandName, string propertyName, object propertyValue)
        {
            ICommandTarget target = this.targets.GetTarget(commandName);

            if (target == null)
            {
                return;
            }
            target.SetCommandProperty(commandName, propertyName, propertyValue);
        }