Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== CUT method (PropertyGrid) ====== ==== Description ==== If the current property item is being edited this method deletes the selected text from the item and copies it to the clipboard. ==== Syntax ==== bCut = Exec_Method( ctrlEntID, "CUT" ) ==== Parameters ==== N/A ==== Returns ==== TRUE$ if the text was being edited, FALSE$ otherwise. ==== Remarks ==== This method only works on enabled property items with the PS_PGIT_EDIT$, PS_PGIT_EDITBUTTON$, or PS_PGIT_EDITCOMBO$ styles. ==== Example ==== <code> $Insert PS_Property_Grid_Equates $Insert Logical CtrlEntID = @Window : ".PRG_MAIN" If Get_Property( CtrlEntID, "EDITORHANDLE" ) Then // A property is being edited Call Exec_Method( CtrlEntID, "CUT" ) End </code> ==== See Also ==== EDITORHANDLE property, COPY method, PASTE method, SELECTALL method, UNDO method . guides/oi10/presentation_server/cut_method_propertygrid.txt Last modified: 2023/10/25 10:49by 127.0.0.1