How to get current items?

Hi, 

I saw this option gr.SelectionMode = SelectionMode.MultiExtended 

however I can't find the .selecteditems or indexs property

Is there a way to access it?


Q2, 

I have 3 columns and set their width. but if exceed, horizonscroll scrollbar will appear.

Use both Grid.DisplayHorizontalLines and ScrollAlwaysVisible did not work.

Is there a way to hide?


Q3, 

How to center align text content for entire column?

I used HorizontalAlignment but failed.


Thanks you!



1 Reply 1 reply marked as answer

SG Santhosh Govindasamy Syncfusion Team November 25, 2024 01:59 PM UTC

Hi jamin,

Thank you for reaching out.

S.NO

Query

Response

1

I saw this option gr.SelectionMode = SelectionMode.MultiExtended

 

however I can't find the .selecteditems or indexs property

 

Is there a way to access it?

You can retrieve the selected item using the "SelectedItem" API and the "SelectedValue" API.

Code Snippet:

var item=gridListControl.SelectedItem;

var value = gridListControl.SelectedValue;

var value = gridListControl.Grid.Selections;

2

I have 3 columns and set their width. but if exceed, horizonscroll scrollbar will appear.

Use both Grid.DisplayHorizontalLines and ScrollAlwaysVisible did not work.

Is there a way to hide?

 

To hide the horizontal scrollbar in the WinForms GridListControl, you can use the HScrollBehavior property. By setting its value to Disabled, the horizontal scrollbar will be hidden.

 

Please refer to the KB article mentioned below.

How to hide horizontal scroll bars in WinForms GridListControl?

3

How to center align text content for entire column?

I used HorizontalAlignment but failed.

 

To change the header text alignment of the GridListControl, any of the methods listed below can be used: 

1. Using the QueryCellInfo event 

2. Using the BaseStylesMap property 

 

Similarly, you can adjust the alignment of the row data as well.

Please refer to the KB article mentioned below.
How to align the header text in WinForms GridListControl?


For your reference, we have attached the sample. Kindly review it.

Regards,
Santhosh.G


Attachment: GridListCOntrol_Demo_7bb189ad.zip

Marked as answer
Loader.
Up arrow icon