| **Navigation:**  [[introduction.htm|Language Reference]] > [[chapter runtime properties.htm|App C - PROP: Runtime Properties]] > Complete Property List >====== PROP:ClipBits ====== | [[prop clienty.htm|{{btn_prev_n.gif|Previous page}}]][[chapter runtime properties.htm|{{btn_home_n.gif|Return to chapter overview}}]][[prop closereporthook.htm|{{btn_next_n.gif|Next page}}]] | | || Property of an IMAGE control that allows bitmap images to be moved into (but not out of) the Windows clipboard when set to one (1). Only .BMP, .PCX, or .GIF image types can be stored as a bitmap (.BMP) image in the Clipboard. **Example:** **WinView WINDOW('View'),AT(0,0,320,200),MDI,MAX,HVSCROLL** **         IMAGE(),AT(0,0,,),USE(?Image)** **         BUTTON('Save Picture'),AT(80,180,60,20),USE(?SavePic)** **         BUTTON('New Picture'),AT(160,180,60,20),USE(?NewPic)** **        END** **FileName  STRING(64)                  !Filename variable** ** CODE** ** OPEN(WinView)** ** DISABLE(?LastPic)** ** IF NOT FILEDIALOG('Choose File to View',FileName,'BitMap|*.BMP|PCX|*.PCX',0)** **  RETURN                              !Return if no file chosen** ** END** ** ?Image{PROP:Text} = FileName** ** ACCEPT** **  CASE ACCEPTED()** **  OF ?NewPic** **   IF NOT FILEDIALOG('Choose File to View',FileName,'BitMap|*.BMP|PCX|*.PCX',0)** **    BREAK                             !Return if no file chosen** **   END** **   ?Image{PROP:Text} = FileName** **  OF ?SavePic** **   ?Image{****PROP:ClipBits****} = 1          !Put image into Clipboard** **   ENABLE(?LastPic)                   ! activate Last Picture button** **  END** ** END**