Click or drag to resize

ItemOperationModelIncludeChildren Property

Includes the Item's children in the scope of the operation.

Namespace:  Livit.Learn.Model.Actions
Assembly:  Livit.Learn.Model (in Livit.Learn.Model.dll) Version: 0.0.0.0
Syntax
C#
public bool IncludeChildren { get; set; }

Property Value

Type: Boolean
Remarks

Setting IncludeChildren to True will make it possible to perform the operation on one or many child items of the Target.

Examples
Using IncludeChildren to include specific child items of the Target:
XML
<CreateItem Target="PCRMachineTubes" ReplaceFrom="PCRTube" IncludeChildren="true" ItemId="PCRTubeMSTNIII3" />
This code will replace any PCRTube items inside the PCRMachineTubes object with PCRTubeMSTNIII3 items.
See Also