ActiveReports3 Request technical support
LayoutAction Enumeration
See Also  


Specifies the action to be performed after a section is formatted.

Syntax

Visual Basic (Declaration) 
Public Enum LayoutAction 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As LayoutAction
C# 
public enum LayoutAction : Enum 

Members

MemberDescription
PrintSectionThe section will be printed.
MoveLayoutThe layout position will move to the next printing location on the page.
NextRecordThe data navigation will advance to the next record.

Remarks

The following table shows the results for setting different LayoutAction combinations.

PrintSection | MoveLayout | NextRecord (Default) Move to the next print location, get the next record, and print data.
PrintSection | MoveLayout Move to the next print location, don't advance to the next record, but print the data (repeats the same record).
NextRecord Skip a record without leaving a blank space on the page.
MoveLayout | NextRecord Skip a record and leave a blank space on the page.
MoveLayout Leave a blank space without skipping a record.
PrintSection | NextRecord Print the next record on top of the current record (UnderlayNext).

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         DataDynamics.ActiveReports.LayoutAction

See Also