Interface IGroupableItemSource

Definition

Namespace:
Tizen.NUI.Components
Assembly:
Tizen.NUI.Components.dll

Base interface for encapsulated data source with group structure in CollectionView.

C#
Copy
public interface IGroupableItemSource : IItemSource, IDisposable

Methods

View Source

GetGroupParent(Int32)

Boolean checker for position is group footer or not

Declaration
C#
Copy
object GetGroupParent(int position)
Parameters
Type Name Description
Int32 position

The position for checking group footer.

Returns
Type Description
Object
View Source

IsGroupFooter(Int32)

Boolean checker for position is group footer or not

Declaration
C#
Copy
bool IsGroupFooter(int position)
Parameters
Type Name Description
Int32 position

The position for checking group footer.

Returns
Type Description
Boolean
View Source

IsGroupHeader(Int32)

Boolean checker for position is group header or not

Declaration
C#
Copy
bool IsGroupHeader(int position)
Parameters
Type Name Description
Int32 position

The position for checking group header.

Returns
Type Description
Boolean

Extension Methods