次の方法で共有


CellPropertyCollection クラス

Cell に含まれる CellProperty オブジェクトのコレクションを含みます。

名前空間:  Microsoft.AnalysisServices.AdomdClient
アセンブリ:  Microsoft.AnalysisServices.AdomdClient (Microsoft.AnalysisServices.AdomdClient.dll)

構文

'宣言
Public NotInheritable Class CellPropertyCollection _
    Implements ICollection, IEnumerable
'使用
Dim instance As CellPropertyCollection
public sealed class CellPropertyCollection : ICollection, 
    IEnumerable
public ref class CellPropertyCollection sealed : ICollection, 
    IEnumerable
[<SealedAttribute>]
type CellPropertyCollection =  
    class
        interface ICollection
        interface IEnumerable
    end
public final class CellPropertyCollection implements ICollection, IEnumerable

説明

CellPropertyCollection は、Cell が作成されるときに設定されます。セル セット内の各セルには、CellPropertyCollection コレクションで管理される CellProperty オブジェクトで表される、0 個以上の固有またはカスタムのセル プロパティを関連付けることができます。

使用例

次のサブルーチンは、指定された Cell の CellPropertyCollection コレクションを繰り返し処理します。

Public Sub ListCellPropertyCollection(ByRef CellToCheck As Cell)
    'Assumes CellToCheck is not null.
    Dim cellProperty As CellProperty

    Debug.WriteLine("Found " & CellToCheck.CellProperties.Count & _
        " cell properties in cell:")

    For Each cellProperty In CellToCheck.CellProperties
        Debug.WriteLine("  Name:  " & cellProperty.Name)
        Debug.WriteLine(" Value:  " & cellProperty.Value)
    Next
End Sub

継承階層

System. . :: . .Object
  Microsoft.AnalysisServices.AdomdClient..::..CellPropertyCollection

スレッド セーフ

この型の public static (Visual Basic では Shared) のメンバーはすべて、スレッド セーフです。インスタンス メンバーの場合は、スレッド セーフであるとは限りません。