Skip to content

CustomActionStep

ClassAssetInventoryAssetInventory.Editor
public sealed class CustomActionStep

Persistent action-step entry that links an Automator step definition to its saved parameter values and execution order.

public CustomActionStep()

public void ResolveValues()

Resolves the referenced Automator step definition and deserializes its saved parameter values for editing or execution.

public void PersistValues()

Serializes the current Automator parameter values into the compact form stored with the custom action.

public override string ToString()

Returns

System.String

[PrimaryKey]
[AutoIncrement]
public int Id { get; set; }

Returns

System.Int32

public int ActionId { get; set; }

Returns

System.Int32

public string Key { get; set; }

Returns

System.String

public int OrderIdx { get; set; }

Returns

System.Int32

public string Params { get; set; }

Returns

System.String

[Ignore]
public ActionStep StepDef { get; set; }

Returns

Automator.ActionStep

[Ignore]
public List<ParameterValue> Values { get; set; }

Returns

System.Collections.Generic.List{Automator.ParameterValue}