PicClip, COM interface constants for VB.Net / VBScript

PicClip - interface constants

     This page contains simple VBA include for the PicClip COM library.

library parameters

File NameWINDOWS\system32\PICCLP32.OCX
Guid{27395F88-0C0C-101B-A3C9-08002B2F49FB}
Enums1

ErrorConstants

enum, 22 members.
  'Error Contants
Public Enum ErrorConstants

  'Out of memory
  picOutOfMemory = 7  '&H7

  'Property is read-only
  picSetNotSupported = 383  '&H17F

  'Property can't be set on this control
  picSetNotPermitted = 383  '&H17F

  'Property is write-only
  picGetNotSupported = 394  '&H18A

  'Picture format not supported
  picInvalidPictureFormat = 32000  '&H7D00

  'Unable to obtain display context
  picDisplayContext = 32001  '&H7D01

  'Unable to obtain memory device context
  picMemDevContext = 32002  '&H7D02

  'Unable to obtain bitmap
  picBitmap = 32003  '&H7D03

  'Unable to select bitmap object
  picSelBitmapObj = 32004  '&H7D04

  'Unable to allocate internal picture structure
  picIntPicStruct = 32005  '&H7D05

  'Bad GraphicCell index
  picBadIndex = 32006  '&H7D06

  'No GraphicCell picture size specified
  picNoPicSize = 32007  '&H7D07

  'Only bitmap GraphicCell pictures allowed
  picBitmapsOnly = 32008  '&H7D08

  'Bad GraphicCell picture clip property request
  picBadClip = 32010  '&H7D0A

  'GetObject() Windows function failure
  picGetObjFailed = 32012  '&H7D0C

  'Clip region boundary error
  picClipBounds = 32015  '&H7D0F

  'Cell size too small (must be at least 1 by 1 pixel)
  picCellTooSmall = 32016  '&H7D10

  'Rows property must be greater than zero
  picRowNotPositive = 32017  '&H7D11

  'Cols property must be greater than zero
  picColNotPositive = 32018  '&H7D12

  'StretchX property cannot be negative
  picStretchXNegative = 32019  '&H7D13

  'StretchY property cannot be negative
  picStretchYNegative = 32020  '&H7D14

  'No picture assigned
  picNoPicture = 32021  '&H7D15
End Enum
WUtils.com