Disposition: PrxSheetHeaderPartDisposition;
The Disposition property returns method of positioning of a part of the title or header and footer.
Sub Main;
Var
MB: IMetabase;
Report: IPrxReport;
Header :IPrxSheetHeaderBase;
Left :IPrxSheetHeaderPart;
i: Integer;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("Report").Bind As IPrxReport;
Header := Report.Title As IPrxSheetHeaderBase;
Left := Header.Left;
i := Left.Disposition As Integer;
End Sub Main;
After executing the example the "i" variable contains the type of the title part converted into an integer. The identifier of the regular report - Report.
See also: