Método GetReportItemStartAndEndPages
Determines the page on which an item in the report item collection should appear, based on soft page breaks.
Namespace: Microsoft.ReportingServices.ReportRendering
Assembly: Microsoft.ReportingServices.ProcessingCore (em Microsoft.ReportingServices.ProcessingCore.dll)
Sintaxe
'Declaração
Public Sub GetReportItemStartAndEndPages ( _
currentPage As Integer, _
index As Integer, _
<OutAttribute> ByRef startPage As Integer, _
<OutAttribute> ByRef endPage As Integer _
)
'Uso
Dim instance As ReportItemCollection
Dim currentPage As Integer
Dim index As Integer
Dim startPage As Integer
Dim endPage As Integer
instance.GetReportItemStartAndEndPages(currentPage, _
index, startPage, endPage)
public void GetReportItemStartAndEndPages(
int currentPage,
int index,
out int startPage,
out int endPage
)
public:
void GetReportItemStartAndEndPages(
int currentPage,
int index,
[OutAttribute] int% startPage,
[OutAttribute] int% endPage
)
member GetReportItemStartAndEndPages :
currentPage:int *
index:int *
startPage:int byref *
endPage:int byref -> unit
public function GetReportItemStartAndEndPages(
currentPage : int,
index : int,
startPage : int,
endPage : int
)
Parâmetros
- currentPage
Tipo: System. . :: . .Int32
The page on which the report item collection starts.
- index
Tipo: System. . :: . .Int32
The index of the item in the ReportItemCollection.
- startPage
Tipo: System. . :: . .Int32%
[out] The index of the first page that the item spans.
- endPage
Tipo: System. . :: . .Int32%
[out] The index of the last page that the item spans.
Consulte também