Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.44 KB

5028ecdd-4184-5726-2c78-95edeab6e879.md

File metadata and controls

54 lines (39 loc) · 1.44 KB

BlastScriptAPI.TryGetFunctionCallById Method

try to get a function by id, in release it just gets it, in debug it checks

Namespace: NSS.Blast
Assembly: BLAST (in BLAST.dll) Version: 1.0.0

Syntax

C#

public bool TryGetFunctionCallById(
	int id,
	out BlastScriptFunction function
)

VB

Public Function TryGetFunctionCallById ( 
	id As Integer,
	<OutAttribute> ByRef function As BlastScriptFunction
) As Boolean

C++

public:
bool TryGetFunctionCallById(
	int id, 
	[OutAttribute] BlastScriptFunction% function
)

F#

member TryGetFunctionCallById : 
        id : int * 
        function : BlastScriptFunction byref -> bool 

Parameters

 

id
Type: System.Int32
function id/index
function
Type: NSS.Blast.BlastScriptFunction
function

Return Value

Type: Boolean
true if found

See Also

Reference

BlastScriptAPI Class
NSS.Blast Namespace