CustomActionGetDelegate Delegate |
v01.180.0 (Beta)[This is preliminary documentation and is subject to change.]
Allows you to modify the actions associated with a block before it's displayed to user.
Namespace: Sandbox.ModAPIAssembly: Sandbox.Common (in Sandbox.Common.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public delegate void CustomActionGetDelegate(
IMyTerminalBlock block,
List<IMyTerminalAction> actions
)
Public Delegate Sub CustomActionGetDelegate (
block As IMyTerminalBlock,
actions As List(Of IMyTerminalAction)
)
public delegate void CustomActionGetDelegate(
IMyTerminalBlock^ block,
List<IMyTerminalAction^>^ actions
)
type CustomActionGetDelegate =
delegate of
block : IMyTerminalBlock *
actions : List<IMyTerminalAction> -> unit
Parameters
- block
- Type: Sandbox.ModAPIIMyTerminalBlock
The block actions are associated with - actions
- Type: System.Collections.GenericListIMyTerminalAction
The list of actions for this block
See Also