Slide 9.6: Line-by-line anatomy of Menu.c (cont.) (cont.)
  Slide 9.8: Line-by-line anatomy of Menu.c (cont.)
  Home


Line-by-line Anatomy of Menu.c (Cont.)


FldDelete( fld, 0, FldGetTextLength( fld ) );
The function UInt16 FldGetTextLength( const FieldType *fldP ) returns the length in bytes of the field's text.
FldCopy( fld );
This function void FldCopy( const FieldType *fldP ) copies the current selection to the text clipboard.
FldCut( fld );
This function void FldCut( FieldType *fldP ) copies the current selection to the text clipboard, deletes the selection from the field, and redraws the field.
FldPaste( fld );
This function void FldPaste( FieldType *fldP ) replaces the current selection in the field, if any, with the contents of the text clipboard.
FldSetSelection( fld, 0, FldGetTextLength( fld ) );
This function void FldSetSelection( FieldType *fldP, UInt16 startPosition, UInt16 endPosition ) sets the current selection in a field and highlights the selection if the field is visible.