Delta.RemoveAction

説明

デルタから指定された ActionDelta を削除します。

C#構文

Delta.RemoveAction( siModificationDeltaType in_Type );

スクリプト構文

Delta.RemoveAction( DeltaType );

パラメータ

パラメータ タイプ 説明
DeltaType siModificationDeltaType 削除する修正タイプ

JScript の例

/*

	This example demonstrates how to remove an ActionDelta

*/

NewScene(null, false);

// Create a reference model from a cube

var oRoot = Application.ActiveProject.ActiveScene.Root;

var oCube = oRoot.AddGeometry("Cube", "MeshSurface");

var emdlFileRefModel = XSIUtils.BuildPath(Application.InstallationPath(siProjectPath), "Models", "MyModel.emdl"); 

CreateModelAndConvertToRef(oCube, emdlFileRefModel );

// Add the Delta object

var oDelta = AddDelta(oCube.Model);

// Translate the 3D Objects

Translate(oCube, 3.0, 3.0, 0.0, siRelative, siView, siObj, siXYZ, null, null, null, null, null, null, null, null, null, 0, null);

// Remove the Action of type siModificationDeltaStaticValue

oDelta.RemoveAction(siModificationDeltaStaticValue);

// Revert the modification

UpdateReferencedModel(oCube.Model);

関連項目

ActionDelta.RemoveItem ActionDelta.RemoveAllItems