Property | Type | Description | |
---|---|---|---|
m_highlightedIndex | int | ||
m_selectedIndex | int |
Property | Type | Description | |
---|---|---|---|
EnsureRoot | void | ||
FwListBox | System | ||
GetItem | object | ||
RaiseSameItemSelected | void | ||
RaiseSelectedIndexChanged | void | ||
SetItem | void |
Method | Description | |
---|---|---|
BeginUpdate ( ) : void |
Begins the update.
|
|
CheckDisposed ( ) : void |
Check to see if the object has been disposed. All public Properties and Methods should call this before doing anything else.
|
|
EndUpdate ( ) : void |
Ends the update.
|
|
FindStringExact ( string str ) : int |
Find the index where the specified string occurs. If it does not, or the argument is null, return -1.
|
|
FocusAndCapture ( ) : void |
Move the focus to the real view. (Used to capture the mouse also, but that interferes with the scroll bar, so I'm using a filter instead.)
|
|
PropChanged ( int hvo, int tag, int ivMin, int cvIns, int cvDel ) : void |
Receives notifications when something in the data cache changes.
|
|
ScrollHighlightIntoView ( ) : void |
Scroll so that the selection can be seen.
|
|
TextOfItem ( object item ) : ITsString |
Obtain the text corresponding to the specified item in your contents list.
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Clean up any resources being used.
|
|
FindIndexOfTss ( ITsString tss ) : int |
Find the index where the specified TsString occurs. If it does not, or the argument is null, return -1.
|
|
IsHighlighted ( int index ) : bool |
|
|
IsSelected ( int index ) : bool |
Answer whether the indicated index is selected. This is trivial now, but will be less so if we implement multiple selections.
|
Method | Description | |
---|---|---|
EnsureRoot ( ) : void |
Ensure the root box has been created.
|
|
FwListBox ( ) : System | ||
GetItem ( int itemIndex ) : object |
Gets the item.
|
|
RaiseSameItemSelected ( ) : void |
Fire the SameItemSelected event.
|
|
RaiseSelectedIndexChanged ( ) : void |
Fire the SelectedIndexChanged event.
|
|
SetItem ( object item, int &itemIndex ) : void |
Sets the item.
|
protected FindIndexOfTss ( ITsString tss ) : int | ||
tss | ITsString | |
return | int |
public PropChanged ( int hvo, int tag, int ivMin, int cvIns, int cvDel ) : void | ||
hvo | int | |
tag | int | |
ivMin | int | |
cvIns | int | |
cvDel | int | |
return | void |
public TextOfItem ( object item ) : ITsString | ||
item | object | |
return | ITsString |