メインコンテンツまでスキップ

プロダクトを適用する

プロダクトを適用するには、IProductLineModelオブジェクトのApplyProductメソッドを用います。

public void ApplyProduct(ICommandContext c, ICommandParams p)
{
IProductLineModel productLineModel = c.App.Workspace.CurrentProject.ProductLineModel;

// 指定された名前のプロダクトを適用します
productLineModel.ApplyProductBy("ACC-0011");

// プロダクトで適用する場合
IProduct product = ...
productLineModel.ApplyProduct(product);
}