 |
RenderingStepsListFindFirstT(String, Boolean) Method |
Returns the first RenderingStep of the specified T type and specified name. If the RenderingStep is not found, then null is returned.
Namespace: Ab4d.SharpEngine.RenderingStepsAssembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 4.1.9680+a1b1e43de1ad9a7e35472c33948d688d7b40ef79
Syntaxpublic T FindFirst<T>(
string? renderingStepName,
bool searchInChildRenderingSteps = false
)
where T : RenderingStep
Parameters
- renderingStepName String
- name of the rendering step to find (null if name is not important).
- searchInChildRenderingSteps Boolean (Optional)
- if true the method will also search in each child rendering step in the RenderingStepsGroup. Default value is false
Type Parameters
- T
- type of RenderingStep
Return Value
Tfirst RenderingStep of the specified T type
See Also