<< Click to Display Table of Contents >>
GetSourceValues
Source 필드 값을 가져옵니다.
Prototype
array GetSourceValues()
Reference
OnInsert, OnUpdate, OnDelete 이벤트에서 실행한 경우에만 동작하며, 그 외 이벤트에서 실행하였을 경우 null을 리턴합니다.
리턴되는 필드 값은 필드 타입에 따라 문자, 숫자, bool, Date 객체, OZBinary 객체로 리턴됩니다.
필드 타입에 따라 리턴되는 값의 타입은 GetSourceValue() 함수를 참고하시기 바랍니다.
Example
var ds = This.GetDataSet();
var SourceValues = new Array();
SourceValues = ds.GetSourceValues();