====== PICTURE_PROPS Service ====== ==== Description ==== Returns information about an OLE Picture object created via the Utility [[load_picture_service|LOAD_PICTURE]] service. Note: This is a Windows only function. ==== Parameters ==== ^Parameter^Description^ ||(Required) the OLE interface pointer returned from the LOAD_PICTURE service.| ==== Returns ==== A dynamic array of picture information extracted via it's internal IPicture interface (See the Microsoft documentation for more information on these fields). <1> Handle <2> HPal <3> Type <4> Width (HIMETRIC format - NOT pixels!) <5> Height (HIMETRIC format - NOT pixels!) <6> HDC <7> KeepOriginalFormat <8> Attributes ==== See Also ==== [[beep_service|BEEP]] Service [[destroy_service|DESTROY]] Service [[removedir_service|REMOVEDIR]] Service [[choosecolor_service|CHOOSECOLOR]] Service [[flush_service|FLUSH]] Service [[renamedir_service|RENAMEDIR]] Service [[choosedir_service|CHOOSEDIR]] Service [[get_event_service|GET_EVENT]] Service [[renamefile_service|RENAMEFILE]] Service [[choosefile_service|CHOOSEFILE]] Service [[getlogicaldrives_service|GETLOGICALDRIVES]] Service [[runhelp_service|RUNHELP]] Service [[choosefont_service|CHOOSEFONT]] Service [[makedir_service|MAKEDIR]] Service [[runwin_service|RUNWIN]] Service [[copyfile_service|COPYFILE]] Service [[objectid_service|OBJECTID]] Service [[textrect_service|TEXTRECT]] Service [[create_service|CREATE]] Service [[objectlist_service|OBJECTLIST]] Service [[wincount_service|WINCOUNT]] Service [[cursor_service|CURSOR]] Service [[printsetup_service|PRINTSETUP]] Service [[utility|Utility]] function [[HANDLE_BY_CURSOR_Service|HANDLE_BY_CURSOR]] Service [[IUNKNOWN_RELEASE_Service|IUNKNOWN_RELEASE]] Service [[LOAD_PICTURE_Service|LOAD_PICTURE]] Service [[OBJECT_BY_CURSOR_Service|OBJECT_BY_CURSOR]] Service [[PICTURE_PROPS_Service|PICTURE_PROPS]] Service ==== Example ==== // Load a OLE Picture object bmpFile = ".\bmps\somepic.bmp" pPicture = Utility( "LOAD_PICTURE", bmpFile ) // Do something with the picture object picInfo = Utility( "PICTURE_PROPS", pPicture ) picType = picInfo<3> ; * // PICTYPE // Call it's release method call Utility( "IUNKNOWN_RELEASE", pPicture )