Board
Board.Input.BoardInput
BoardInput.GetActiveContacts Method
| Overloads | |
|---|---|
| GetActiveContacts(BoardContactTypeMask) | Gets all currently active contacts on the Board. |
| GetActiveContacts(BoardContactType[]) | Gets all currently active contacts on the Board. |
BoardInput.GetActiveContacts(BoardContactTypeMask) Method
Gets all currently active contacts on the Board.
public static Board.Input.BoardContact[] GetActiveContacts(Board.Input.BoardContactTypeMask mask);
Parameters
mask BoardContactTypeMask
A mask to filter which BoardContacts to return.
Returns
BoardContact[]
An array of currently active BoardContacts whose type matches mask.
BoardInput.GetActiveContacts(BoardContactType[]) Method
Gets all currently active contacts on the Board.
public static Board.Input.BoardContact[] GetActiveContacts(params Board.Input.BoardContactType[] boardContactTypes);
Parameters
boardContactTypes BoardContactType[]
An array of contact types to filter which BoardContacts to return.
Returns
BoardContact[]
An array of currently active BoardContacts whose type is included in boardContactTypes.