DataPointCustomProperties.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 DataPointCustomProperties 对象。
重载
Item[String] |
按名称获取或设置 DataPointCustomProperties 对象。 |
Item[Int32] |
按 DataPointCustomProperties 对象在索引中的位置获取该对象。 |
Item[String]
按名称获取或设置 DataPointCustomProperties 对象。
public:
property System::String ^ default[System::String ^] { System::String ^ get(System::String ^ name); void set(System::String ^ name, System::String ^ value); };
public string this[string name] { get; set; }
member this.Item(string) : string with get, set
Default Public Property Item(name As String) As String
参数
- name
- String
自定义属性的名称。
属性值
表示数据点的自定义属性的 string
值。
适用于
Item[Int32]
按 DataPointCustomProperties 对象在索引中的位置获取该对象。
public:
property System::String ^ default[int] { System::String ^ get(int index); };
public string this[int index] { get; }
member this.Item(int) : string
Default Public ReadOnly Property Item(index As Integer) As String
参数
- index
- Int32
自定义属性的索引。
属性值
表示数据点的自定义属性的 string
值。