SignOnCharType Property

Type of characters the password can contain.

Syntax

ANSI (Cross Platform)
int GetSignOnCharType(int iSignOnIndex);

Unicode (Windows)
INT GetSignOnCharType(INT iSignOnIndex);

Possible Values

SCT_ALPHA_ONLY(0), 
SCT_NUMERIC_ONLY(1),
SCT_ALPHA_OR_NUMERIC(2),
SCT_ALPHA_AND_NUMERIC(3),
SCT_UNKNOWN(4)
- (int)signOnCharType:(int)signOnIndex;

Possible Values

SCT_ALPHA_ONLY(0), 
SCT_NUMERIC_ONLY(1),
SCT_ALPHA_OR_NUMERIC(2),
SCT_ALPHA_AND_NUMERIC(3),
SCT_UNKNOWN(4)
#define PID_FIPROFILE_SIGNONCHARTYPE 60

IPWORKSOFX_EXTERNAL void* IPWORKSOFX_CALL IPWorksOFX_FIProfile_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);

IPWORKSOFX_EXTERNAL int IPWORKSOFX_CALL IPWorksOFX_FIProfile_CheckIndex(void *lpObj, int propid, int arridx);

Default Value

1

Remarks

Type of characters the password can contain. The valid values of this string are:

sctAlphaOnly (0)Password may not contain numeric characters. The server would allow "abbc", but not "1223" or "a122".
sctNumericOnly (1)Password may not contain alphabetic characters. The server would allow "1223", but no "abbc" or "a122".
sctAlphaOrNumeric (2)Password may contain alphabetic or numeric characters (or both). The server would allow "abbc", "1223", or "a122".
sctAlphaAndNumeric (3)Password must contain both alphabetic and numeric characters. The server would allow "a122", but not "abbc" or "1223".
sctUnknown (4)The server has sent an unrecognized character type. Please refer to the SignOnAggregate to obtain the original response.

The SignOnIndex parameter specifies the index of the item in the array. The size of the array is controlled by the SignOnInfoCount property.

This property is read-only and not available at design time.

Data Type

Integer

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks OFX 2020 C++ Edition - Version 20.0 [Build 7941]