MINSEGMENT (Document/Medical only)
typedef struct _MINSEG
{
   L_UINT uStructSize;
   L_INT nMinWidth;
   L_INT nMinHeight;
} MINSEGMENT, L_FAR * pMINSEGMENT;
The MINSEGMENT structure contains the minimum segment width and height.
| Member | Description | 
| uStructSize | Size of this structure in bytes, for versioning. Use the sizeof() macro to calculate this value. | 
| nMinWidth | Minimum segment width, in pixels. Minimum value is 10. | 
| nMinHeight | Minimum segment height, in pixels. Minimum value is 10. | 
Comments
Please note that the LSegment::MrcSegmentBitmap function will be removed in Version 15. It is being replaced with the LSegment::MrcSegmentBitmapExt function.
pMINSEGMENT is a pointer to a MINSEGMENT structure. Where the message parameter type is pMINSEGMENT, you can declare a MINSEGMENT variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pMINSEGMENT variable is necessary only if your program requires a pointer.
MINSEGMENT is used with the LSegment::MrcSegmentBitmap function.