콜렉션에 지정되어 있는 항목을 리턴합니다.
이 메소드에 대한 인수는 숫자 색인(itemNum) 또는 문자열(이름)일 수 있습니다.
VBScript
collection.Item (itemNum)
collection.Item (name)
Perl
$collection->Item(itemNum);
$collection->ItemByName(name);
VBScript
' This example assumes there is at least 1 attachment field
' associated with the record.
set currentSession = GetSession set attachFields = AttachmentFields
set attachField1 = attachFields.Item(0)
set theAttachments = attachField1.Attachments
firstAttachment = theAttachments.Item(0)