ProcessBehaviors Enumeration | 
 
            Enumeration used for defining various types of transform processing.
            
 
    Namespace: 
   Dundas.BI.Data.Transforms
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntax[FlagsAttribute]
public enum ProcessBehaviors
<FlagsAttribute>
Public Enumeration ProcessBehaviors
[FlagsAttribute]
public enum class ProcessBehaviors
[<FlagsAttribute>]
type ProcessBehaviors
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | None | 0 | 
            The processing type is not set.
             | 
 | SingleRecord | 1 | 
            The transform operates on one record at a time.
            This means that each record can be processed independently.
             | 
 | MultipleRecords | 2 | 
            The transform operates on multiple records at a time.
            This means that records can be processed only after the entire group has been loaded.
             | 
 | SingleElement | 4 | 
            The transform can be applied to a single input element.
             | 
 | MultipleElements | 8 | 
            The transform can be applied to all selected input elements.
             | 
 | Inception | 16 | 
            The transform node the first process operation to be executed.
            It usually is a data select process.
             | 
 | Step | 32 | 
            The transform node is an intermediate process step.
             | 
 | Closure | 64 | 
            The transform node closes the process.
            It usually consists of a DataCube entity.
             | 
See Also