IScriptingEventsOnProjectMemberFieldChanged Method |
FieldName is name of the field being changed. e.g.: 'contact.name' or 'address.city'
Namespace:
SuperOffice.COM.ScriptEvents
Assembly:
Scripting.Interop (in Scripting.Interop.dll) Version: 8.0.0.0
Syntaxvoid OnProjectMemberFieldChanged(
string fullFieldName
)
Sub OnProjectMemberFieldChanged (
fullFieldName As String
)
Dim instance As IScriptingEvents
Dim fullFieldName As String
instance.OnProjectMemberFieldChanged(fullFieldName)
void OnProjectMemberFieldChanged(
[InAttribute] String^ fullFieldName
)
Parameters
- fullFieldName
- Type: SystemString
This gives you the table.fieldname of field that's changed.
Examplessub OnProjectMemberFieldChanged(fieldname)
somessagebox "OnProjectMemberFieldChanged " & fieldname
end sub
See Also