SpreadsheetGear 2017
CustomLists Property (IWorkbookSet)






SpreadsheetGear Namespace > IWorkbookSet Interface : CustomLists Property
Gets or sets the custom lists used by IRange.AutoFill and IRange.DataSeries (null by default).
Syntax
'Declaration
 
Property CustomLists As System.Collections.IList
'Usage
 
Dim instance As IWorkbookSet
Dim value As System.Collections.IList
 
instance.CustomLists = value
 
value = instance.CustomLists
System.Collections.IList CustomLists {get; set;}
read-write property CustomLists: System.Collections.IList; 
function get,set CustomLists : System.Collections.IList
__property System.Collections.IList* get_CustomLists();
__property void set_CustomLists( 
   System.Collections.IList* value
);
property System.Collections.IList^ CustomLists {
   System.Collections.IList^ get();
   void set (    System.Collections.IList^ value);
}

Property Value

Returns the currently set custom lists which are null by default.
Remarks

The IRange.AutoFill and IRange.DataSeries methods support built-in lists consisting of long and short day and month names in the culture of the workbook set. These built-in custom lists may not be modified.

In addition, custom lists may be specified for the workbook set with this CustomLists property. This can be a single list such as an array of strings or it can be a list of lists to specify more than one custom list.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

IWorkbookSet Interface
IWorkbookSet Members
AutoFill Method
DataSeries Method