Interface IListSelectionModel
.NET interface for TO BE DEFINED FROM USER
public interface IListSelectionModel
Properties
AnchorSelectionIndex
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/ListSelectionModel.html#getAnchorSelectionIndex() https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/ListSelectionModel.html#setAnchorSelectionIndex(int)
int AnchorSelectionIndex { get; set; }
Property Value
LeadSelectionIndex
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/ListSelectionModel.html#getLeadSelectionIndex() https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/ListSelectionModel.html#setLeadSelectionIndex(int)
int LeadSelectionIndex { get; set; }
Property Value
MaxSelectionIndex
int MaxSelectionIndex { get; }
Property Value
MinSelectionIndex
int MinSelectionIndex { get; }
Property Value
SelectedIndices
int[] SelectedIndices { get; }
Property Value
- int[]
SelectedItemsCount
int SelectedItemsCount { get; }
Property Value
SelectionMode
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/ListSelectionModel.html#getSelectionMode() https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/ListSelectionModel.html#setSelectionMode(int)
int SelectionMode { get; set; }
Property Value
ValueIsAdjusting
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/ListSelectionModel.html#getValueIsAdjusting() https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/ListSelectionModel.html#setValueIsAdjusting(boolean)
bool ValueIsAdjusting { get; set; }
Property Value
Methods
AddListSelectionListener(ListSelectionListener)
void AddListSelectionListener(ListSelectionListener arg0)
Parameters
AddSelectionInterval(int, int)
void AddSelectionInterval(int arg0, int arg1)
Parameters
ClearSelection()
void ClearSelection()
InsertIndexInterval(int, int, bool)
void InsertIndexInterval(int arg0, int arg1, bool arg2)
Parameters
IsSelectedIndex(int)
bool IsSelectedIndex(int arg0)
Parameters
Returns
IsSelectionEmpty()
bool IsSelectionEmpty()
Returns
RemoveIndexInterval(int, int)
void RemoveIndexInterval(int arg0, int arg1)
Parameters
RemoveListSelectionListener(ListSelectionListener)
void RemoveListSelectionListener(ListSelectionListener arg0)
Parameters
RemoveSelectionInterval(int, int)
void RemoveSelectionInterval(int arg0, int arg1)
Parameters
SetSelectionInterval(int, int)
void SetSelectionInterval(int arg0, int arg1)