 |
RenderingStepsList Class |
RenderingStepsList is a collection of rendering steps. It provides additional methods to add rendering steps before and after specific rendering step.
Inheritance HierarchySystemObject
Ab4d.SharpEngine.RenderingStepsRenderingStepsList
Namespace: Ab4d.SharpEngine.RenderingStepsAssembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntaxpublic sealed class RenderingStepsList : ICollection<RenderingStep>,
IEnumerable<RenderingStep>, IEnumerable, ICollection
The RenderingStepsList type exposes the following members.
Constructors
Properties
Methods | Name | Description |
---|
 | Add(RenderingStep) |
Adds rendering step after the last rendering step
|
 | Add(RenderingStep) |
Adds multiple rendering steps after the last rendering step
|
 | AddAfter(RenderingStep, RenderingStep) |
Adds rendering step (renderingStepToAdd) after the specified rendering step (existingRenderingStep)
|
 | AddAfter(RenderingStep, RenderingStep) |
Adds multiple rendering steps after the specified rendering step (existingRenderingStep)
|
 | AddBefore(RenderingStep, RenderingStep) |
Adds rendering step (renderingStepToAdd) before the specified rendering step (existingRenderingStep)
|
 | AddBefore(RenderingStep, RenderingStep) |
Adds multiple rendering steps before the specified rendering step (existingRenderingStep)
|
 | Clear |
Removes all rendering steps
|
 | Contains |
Returns true if the specified rendering step exist in this RenderingStepList.
|
 | CopyTo |
Copies all rendering steps from this list into the specified array.
The array must be preallocated to the number of elements in this list.
|
 | FindFirst(String, Boolean) |
Returns the first RenderingStep with the specified specified name. If the RenderingStep is not found, then null is returned.
|
 | FindFirstT(Boolean) |
Returns the first RenderingStep of the specified T type. If the RenderingStep is not found, then null is returned.
|
 | FindFirstT(String, Boolean) |
Returns the first RenderingStep of the specified T type and specified name. If the RenderingStep is not found, then null is returned.
|
 | FindLast(String, Boolean) |
Returns the last RenderingStep with the specified specified name. If the RenderingStep is not found, then null is returned.
|
 | FindLastT(Boolean) |
Returns the last RenderingStep of the specified T type. If the RenderingStep is not found, then null is returned.
|
 | FindLastT(String, Boolean) |
Returns the last RenderingStep of the specified T type and specified name. If the RenderingStep is not found, then null is returned.
|
 | ForEach(ActionRenderingStep, Boolean) |
ForEach executes the action for each rendering step and passes the rendering step as an argument to the action.
|
 | ForEach(ActionRenderingStep, Object, Object, Boolean) |
ForEach executes the action for each rendering step and passes the rendering step as an argument to the action.
A custom actionData is also passed to the action.
|
 | Remove |
Removes the specified rendering step from this list
|
 | RemoveFirst |
Removes the rendering list that is the first in this list
|
 | RemoveLast |
Removes the rendering list that is the last in this list
|
 | ToString |
Returns a string that represents the current object.
(Overrides ObjectToString) |
Top
Events
See Also