SEDRIS Reference Manual
APPENDIX A - Transmittal Access Level 0 API
Types
SE_Search_Type
/*
 * ENUM: SE_Search_Type
 *
 *   Whether to use a point search, bounding box search, or exact search for a
 *   search boundary. Point search is quickest, but is not guaranteed to be
 *   accurate. For a bounding box search, a partial inclusion inclusion_choice
 *   (see SE_CreateSpatialSearchBoundary()) is guaranteed to include all
 *   objects that are partly included in the search area; it may include extra
 *   objects. A box search with full inclusion will return only fully included
 *   objects, but it may miss some objects. An exact search is guaranteed to be
 *   accurate to a small distance.
 */
typedef enum
{
SE_SEARCHTYP_POINT,
SE_SEARCHTYP_BOUNDING_BOX,
SE_SEARCHTYP_EXACT
} SE_Search_Type;



Prev: SE_Search_Rule_Type. Next: SE_Search_Value_Type.


Return to: Top of this Page, Type Index