Click or drag to resize

GH_TaskCapableComponentTGetSolveResults Method

Call this method to await the associated task and retrieve its data.

Namespace:  Grasshopper.Kernel
Assembly:  Grasshopper (in Grasshopper.dll)
Syntax
protected bool GetSolveResults(
	IGH_DataAccess access,
	out T data
)

Parameters

access
Type: Grasshopper.KernelIGH_DataAccess
Access object identifying the task.
data
Type: T
Data (if any) will be returned here.

Return Value

Type: Boolean
If true, the data was successfully retrieved and can be assigned to outputs immediately. If false, the data was not found and needs to be calculated by the caller.
See Also