共用方式為


ExtendedProperties.Count 屬性

取得 ExtendedProperties 集合內含的 ExtendedProperty 物件數目。

命名空間:  Microsoft.Ink
組件:  Microsoft.Ink (在 Microsoft.Ink.dll 中)

語法

'宣告
Public ReadOnly Property Count As Integer
'用途
Dim instance As ExtendedProperties
Dim value As Integer

value = instance.Count
public int Count { get; }
public:
virtual property int Count {
    int get () sealed;
}
/** @property */
public final int get_Count()
public final function get Count () : int

屬性值

型別:System.Int32
ExtendedProperties 集合內含的 ExtendedProperty 物件數目。

實作

ICollection.Count

範例

這個 C# 範例會取得 Stroke 物件 (變數名稱為 theStroke) 的 ExtendedProperties 集合內的 ExtendedProperty 物件數目。

ExtendedProperties theExtendedProperties = theStroke.ExtendedProperties;
int theCount = theExtendedProperties.Count;

這個 Microsoft® Visual Basic® .NET 範例會取得 Stroke 物件 (變數名稱為 theStroke) 的 ExtendedProperties 集合內的 ExtendedProperty 物件數目。

Dim theExtendedProperties As ExtendedProperties = theStroke.ExtendedProperties
Dim theCount As Integer = theExtendedProperties.Count

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

ExtendedProperties 類別

ExtendedProperties 成員

Microsoft.Ink 命名空間

ExtendedProperty

其他資源

System.Collections.ICollection