CustomControlGetDelegate Delegate |
v01.180.0 (Beta)[This is preliminary documentation and is subject to change.]
Allows you to modify the terminal control list before it is displayed to the user. Modifying controls will change which controls are displayed.
Namespace: Sandbox.ModAPIAssembly: Sandbox.Common (in Sandbox.Common.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public delegate void CustomControlGetDelegate(
IMyTerminalBlock block,
List<IMyTerminalControl> controls
)
Public Delegate Sub CustomControlGetDelegate (
block As IMyTerminalBlock,
controls As List(Of IMyTerminalControl)
)
public delegate void CustomControlGetDelegate(
IMyTerminalBlock^ block,
List<IMyTerminalControl^>^ controls
)
type CustomControlGetDelegate =
delegate of
block : IMyTerminalBlock *
controls : List<IMyTerminalControl> -> unit
Parameters
- block
- Type: Sandbox.ModAPIIMyTerminalBlock
The block that was selected - controls
- Type: System.Collections.GenericListIMyTerminalControl
See Also