Interface IUserCustomizableTerminalAction
Describes terminal action that allows capturing custom arguments and setting toolbar icon title
Namespace: Sandbox.ModAPI.Ingame
Assembly: Sandbox.Common.dll
Syntax
public interface IUserCustomizableTerminalAction
Properties
Parameters
Collection of TerminalActionParameter that are associated with a toolbar item
Declaration
IList<TerminalActionParameter> Parameters { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<TerminalActionParameter> |
Methods
FetchAllBlocks(List<IMyTerminalBlock>)
Gets all blocks the action is associated with
Declaration
void FetchAllBlocks(List<IMyTerminalBlock> result)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.List<IMyTerminalBlock> | result |
GetBlock()
Gets the block the action is associated with
Declaration
IMyTerminalBlock GetBlock()
Returns
Type | Description |
---|---|
IMyTerminalBlock |
SetCustomIconTitle(String)
Sets custom title for toolbar icon
Declaration
void SetCustomIconTitle(string title)
Parameters
Type | Name | Description |
---|---|---|
System.String | title | Text for the toolbar icon |