DrawingCollection.Item[Int32] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置从零开始的指定索引处的 Drawing。
public:
property System::Windows::Media::Drawing ^ default[int] { System::Windows::Media::Drawing ^ get(int index); void set(int index, System::Windows::Media::Drawing ^ value); };
public System.Windows.Media.Drawing this[int index] { get; set; }
member this.Item(int) : System.Windows.Media.Drawing with get, set
Default Public Property Item(index As Integer) As Drawing
参数
属性值
指定索引处的 Drawing。
实现
例外
value
为 null
。
index
不是 DrawingCollection 中的有效索引。
注解
与典型的实现IList<T>.Item[]不同,如果尝试插入 null (Nothing) 引用,则此实现将ArgumentException引发该实现。