ParameterCollection 클래스

컬렉션에 Parameter 개체를 추가하고 검색하기 위한 속성 및 메서드를 제공합니다.

네임스페이스 CrystalDecisions.Web 어셈블리 CrystalDecisions.Web (CrystalDecisions.Web.dll)

구문

Public Class ParameterCollection
    Inherits CollectionBase
    Implements IList, ICollection, IEnumerable
public class ParameterCollection : CollectionBase, IList, ICollection, IEnumerable

예제

이 예에서는 매개 변수 컬렉션에서 매개 변수를 가져오는 방법을 보여 줍니다.

    Private Function GetParameter(ByVal myParameterCollection As ParameterCollection, ByVal myIndex As Integer) _
            As Parameter
        GetParameter = myParameterCollection.Item(myIndex)
    End Function
    private Parameter GetParameter(ParameterCollection parameterCollection, int index)
    {
        return parameterCollection[index];
    }

상속 계층 구조

Object
   CollectionBase
      ParameterCollection

버전 정보

Crystal Reports Basic for Visual Studio 2008

Crystal Reports for Visual Studio 2005 에서부터 지원됨

참고 항목

참조

ParameterCollection 멤버
CrystalDecisions.Web 네임스페이스