Classe TopBottomNSortField
Consente di ottenere e impostare le opzioni per il campo di ordinamento Primi N o Ultimi N.
Per un elenco di tutti i membri di questo tipo, vedere Membri TopBottomNSortField.
TopBottomNSortField
[Visual Basic]
Public Class TopBottomNSortField
Inherits SortField
[C#]
public class TopBottomNSortField : SortField
[C++]
__gc public class TopBottomNSortField : public SortField
[VJ#]
public class TopBottomNSortField extends SortField
Note
Restituisce un oggetto SortField in base all'indice tramite la proprietà Item della raccolta SortFields e imposta l'oggetto SortField come oggetto TopBottomNSortField.
Esempio
Nel seguente esempio viene restituito un oggetto TopBottomNSortField.
[Visual Basic]
Private Function GetTopBottomNSortField _
(ByVal sortFieldIndex As Integer) As TopBottomNSortField
Dim topBottomNSortField As TopBottomNSortField
' Individua l’oggetto SortField, lo imposta come
' oggetto TopBottomNSortField e lo restituisce.
If TypeOf _
(Report.DataDefinition.SortFields.Item(sortFieldIndex)) _
Is TopBottomNSortField Then
topBottomNSortField = _
Report.DataDefinition.SortFields.Item(sortFieldIndex)
GetTopBottomNSortField = topBottomNSortField
Else : GetTopBottomNSortField = Nothing
End If
End Function
[C#]
private TopBottomNSortField GetTopBottomNSortField
(int sortFieldIndex)
{
TopBottomNSortField topBottomNSortField;
// Individua l’oggetto SortField, lo imposta come
// oggetto TopBottomNSortField e lo restituisce.
topBottomNSortField =
Report.DataDefinition.SortFields[sortFieldIndex]
as TopBottomNSortField;
if (topBottomNSortField != null) return topBottomNSortField;
else return null;
}
[C++]
TopBottomNSortField* GetTopBottomNSortField
(int sortFieldIndex)
{
TopBottomNSortField* topBottomNSortField;
try
{
// Individua l’oggetto SortField, lo imposta come
// oggetto TopBottomNSortField e lo restituisce.
topBottomNSortField = __try_cast<TopBottomNSortField*>
(Report->DataDefinition->SortFields->Item[sortFieldIndex]);
return topBottomNSortField;
}
catch(System::InvalidCastException*)
{
return 0;
}
};
[VJ#]
private TopBottomNSortField GetTopBottomNSortField
(int sortFieldIndex)
{
TopBottomNSortField topBottomNSortField;
// Individua l’oggetto SortField, lo imposta come
// oggetto TopBottomNSortField e lo restituisce.
topBottomNSortField = (TopBottomNSortField)
Report.get_DataDefinition().get_SortFields().get_Item(sortFieldIndex);
if (topBottomNSortField != null) return topBottomNSortField;
else return null;
}
Requisiti
Spazio dei nomi: CrystalDecisions.CrystalReports.Engine
Piattaforme: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP
Assemblaggio: CrystalDecisions.Crystalreports.Engine (in CrystalDecisions.Crystalreports.Engine.dll)
Vedere anche
Membri TopBottomNSortField | Spazio dei nomi CrystalDecisions.CrystalReports.Engine