QuickBooks Integrator 2020 C++ Edition

Questions / Feedback?

Gender Property

Gender of Employee .

Syntax

ANSI (Cross Platform)
int GetGender();
int SetGender(int iGender); Unicode (Windows) INT GetGender();
INT SetGender(INT iGender);

Possible Values

G_UNSPECIFIED(0), 
G_MALE(1),
G_FEMALE(2)
@property (nonatomic,readwrite,assign,getter=gender,setter=setGender:) int gender;
- (int)gender;
- (void)setGender:(int)newGender;

Possible Values

G_UNSPECIFIED(0), 
G_MALE(1),
G_FEMALE(2)
#define PID_EMPLOYEE_GENDER 12

INQB_EXTERNAL void* INQB_CALL InQB_Employee_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
INQB_EXTERNAL int INQB_CALL InQB_Employee_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

0

Remarks

The gender of the Employee: gMale or gFemale.

The value of Gender may be left as gUnspecified if the gender is unknown or unimportant.

The following values are permitted:

gUnspecified0
gMale1
gFemale2

This property is allowed in Add operations, and not used in Update operations.

Data Type

Integer

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