_Table.Columns Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
property Microsoft::Office::Interop::Outlook::Columns ^ Columns { Microsoft::Office::Interop::Outlook::Columns ^ get(); };
public Microsoft.Office.Interop.Outlook.Columns Columns { get; }
Public ReadOnly Property Columns As Columns
Property Value
Remarks
The Columns collection object is the default member of the Table object.
While rows in a Table correspond to items in the parent Folder or Search object of the Table, Columns in a Table correspond to the properties of these items. Default columns are defined for all folders depending on the parent folder of the Table object. For example, the default properties for the Inbox are: EntryID, Subject, CreationTime, LastModificationTime, and MessageClass. For more information on default properties for a Table, see Default Properties Displayed in a Table Object
To add Column objects to the Columns collection of a Table, use Add(String). To remove the default column set, use RemoveAll(). For more information on adjusting columns of a Table, see Adding Columns to a Table Object