Microsoft.ManagementConsole.ColumnCollectionEventArgs.GetItems C# (CSharp) Method

GetItems() public method

public GetItems ( ) : Microsoft.ManagementConsole.MmcListViewColumn[]
return Microsoft.ManagementConsole.MmcListViewColumn[]
        public MmcListViewColumn[] GetItems()
        {
            return this._items;
        }

Usage Example

示例#1
0
 private void OnColumnsChanged(object sender, ColumnCollectionEventArgs e)
 {
     if (e == null)
     {
         throw new ArgumentNullException("e");
     }
     base.ThrowIfShutdown("OnColumnsChanged");
     if (base.Initialized)
     {
         this.SynchronizeColumns(e.GetItems(), e.Index, e.ChangeType);
     }
 }
ColumnCollectionEventArgs