Lines Matching full:pvalue
20 void StringProperty(CFXJSE_Value* pValue, WideString& wsValue, bool bSetting) {
22 wsValue = pValue->ToWideString();
25 pValue->SetString(wsValue.UTF8Encode().AsStringView());
28 void InterProperty(CFXJSE_Value* pValue, int32_t& iValue, bool bSetting) {
30 iValue = pValue->ToInteger();
33 pValue->SetInteger(iValue);
36 void BooleanProperty(CFXJSE_Value* pValue, bool& bValue, bool bSetting) {
38 bValue = pValue->ToBoolean();
41 pValue->SetBoolean(bValue);
57 void CJX_EventPseudoModel::change(CFXJSE_Value* pValue,
60 Property(pValue, XFA_Event::Change, bSetting);
63 void CJX_EventPseudoModel::commitKey(CFXJSE_Value* pValue,
66 Property(pValue, XFA_Event::CommitKey, bSetting);
69 void CJX_EventPseudoModel::fullText(CFXJSE_Value* pValue,
72 Property(pValue, XFA_Event::FullText, bSetting);
75 void CJX_EventPseudoModel::keyDown(CFXJSE_Value* pValue,
78 Property(pValue, XFA_Event::Keydown, bSetting);
81 void CJX_EventPseudoModel::modifier(CFXJSE_Value* pValue,
84 Property(pValue, XFA_Event::Modifier, bSetting);
87 void CJX_EventPseudoModel::newContentType(CFXJSE_Value* pValue,
90 Property(pValue, XFA_Event::NewContentType, bSetting);
93 void CJX_EventPseudoModel::newText(CFXJSE_Value* pValue,
96 Property(pValue, XFA_Event::NewText, bSetting);
99 void CJX_EventPseudoModel::prevContentType(CFXJSE_Value* pValue,
102 Property(pValue, XFA_Event::PreviousContentType, bSetting);
105 void CJX_EventPseudoModel::prevText(CFXJSE_Value* pValue,
108 Property(pValue, XFA_Event::PreviousText, bSetting);
111 void CJX_EventPseudoModel::reenter(CFXJSE_Value* pValue,
114 Property(pValue, XFA_Event::Reenter, bSetting);
117 void CJX_EventPseudoModel::selEnd(CFXJSE_Value* pValue,
120 Property(pValue, XFA_Event::SelectionEnd, bSetting);
123 void CJX_EventPseudoModel::selStart(CFXJSE_Value* pValue,
126 Property(pValue, XFA_Event::SelectionStart, bSetting);
129 void CJX_EventPseudoModel::shift(CFXJSE_Value* pValue,
132 Property(pValue, XFA_Event::Shift, bSetting);
135 void CJX_EventPseudoModel::soapFaultCode(CFXJSE_Value* pValue,
138 Property(pValue, XFA_Event::SoapFaultCode, bSetting);
141 void CJX_EventPseudoModel::soapFaultString(CFXJSE_Value* pValue,
144 Property(pValue, XFA_Event::SoapFaultString, bSetting);
147 void CJX_EventPseudoModel::target(CFXJSE_Value* pValue,
150 Property(pValue, XFA_Event::Target, bSetting);
191 void CJX_EventPseudoModel::Property(CFXJSE_Value* pValue,
204 BooleanProperty(pValue, pEventParam->m_bCancelAction, bSetting);
207 StringProperty(pValue, pEventParam->m_wsChange, bSetting);
210 InterProperty(pValue, pEventParam->m_iCommitKey, bSetting);
213 StringProperty(pValue, pEventParam->m_wsFullText, bSetting);
216 BooleanProperty(pValue, pEventParam->m_bKeyDown, bSetting);
219 BooleanProperty(pValue, pEventParam->m_bModifier, bSetting);
222 StringProperty(pValue, pEventParam->m_wsNewContentType, bSetting);
225 StringProperty(pValue, pEventParam->m_wsNewText, bSetting);
228 StringProperty(pValue, pEventParam->m_wsPrevContentType, bSetting);
231 StringProperty(pValue, pEventParam->m_wsPrevText, bSetting);
234 BooleanProperty(pValue, pEventParam->m_bReenter, bSetting);
237 InterProperty(pValue, pEventParam->m_iSelEnd, bSetting);
240 InterProperty(pValue, pEventParam->m_iSelStart, bSetting);
243 BooleanProperty(pValue, pEventParam->m_bShift, bSetting);
246 StringProperty(pValue, pEventParam->m_wsSoapFaultCode, bSetting);
249 StringProperty(pValue, pEventParam->m_wsSoapFaultString, bSetting);