Available in LEADTOOLS Imaging Pro, Vector, Document, and Medical Imaging toolkits. |
LWia::SetPropertyLong
#include "ltwrappr.h"
virtual L_INT LWia::SetPropertyLong(pItem, pszID, uID, lValue)
L_VOID * pItem; |
/* pointer to IWiaItem or IWiaItem2 interface */ |
L_TCHAR * pszID; |
/* pointer to string array that represents the equivalent property ID string */ |
L_UINT32 uID; |
/* property ID */ |
L_INT32 lValue; |
/* variable of type L_INT that represents the Long value to be set for the specified Property ID*/ |
Sets the Long value for any WIA property of the following types: VT_I1, VT_UI1, VT_I2, VT_UI2, VT_I4, VT_UI4, VT_INT, VT_UINT, VT_R4 and VT_R8.
Parameter |
Description |
|
pItem |
Valid pointer to a type IWiaItem or IWiaItem2 object (IWiaItem if using WIA Version 1.0; IWiaItem2 if using WIA Version 2.0), which represents the item having the property. |
|
|
You can retrieve this parameter by either calling the LWia::GetRootItem function to get a pointer to the device's root item or by enumerating the child items of the device through a call to LWia::EnumChildItems. |
|
pszID |
This string pointer should contain the equivalent property ID string for the WIA property ID (see example below): |
|
|
Property ID |
Property ID Equivalent String |
|
WIA_IPA_TYMED |
WIA_IPA_TYMED_STR or "Media Type" |
|
WIA_IPA_DEPTH |
WIA_IPA_DEPTH_STR or "Bits Per Pixel" |
|
If this parameter is NULL then the WIA toolkit will use the ID passed through the uID parameter, otherwise the pszID parameter will be used whether or not you passed valid property ID through the uID parameter. |
|
uID |
The property ID of the property. |
|
|
This parameter is required only if the pszID parameter is NULL, otherwise you can pass 0 for this parameter. |
|
lValue |
Variable that contains the Long value you need to set for the specified property ID and for the specified item. |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Comments
This feature is available in LEADTOOLS version 16 or higher.
Call this function to set the Long value for any WIA property of the types mentioned above (for instance, WIA_DPS_DOCUMENT_HANDLING_SELECT, WIA_IPA_TYMED, etc).
Note: |
Through our test we have found the following limitation related to Microsoft WIA toolkit which is, on some drivers and while using WIA 2.0 if you want to change the Image Data Type property (WIA_IPA_DATATYPE) to your custom setting then you have to set the WIA_IPS_CUR_INTENT property value to WIA_INTENT_NONE. |
Required DLLs and Libraries
LTWIA For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
See Also
Example
For an example, refer to LWia::GetPropertyLong.