Interface ICustomizationLists
-
- All Superinterfaces:
com4j.Com4jObject
public interface ICustomizationLists extends com4j.Com4jObject
A collection of all CustomizationList objects in the project.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com4j.Com4jObject
addList(java.lang.String name)
Adds a new CustomizationList object.int
count()
The number of lists in the CustomizationLists object.boolean
isListExist(java.lang.String listName)
Checks if the specified customization list exists.com4j.Com4jObject
list(java.lang.Object param)
Gets the CustomizationList specified by name or ID.com4j.Com4jObject
listByCount(int count)
Gets the CustomizationList specified by its index number.void
removeList(java.lang.String name)
Removes a CustomizationList object.
-
-
-
Method Detail
-
addList
com4j.Com4jObject addList(java.lang.String name)
Adds a new CustomizationList object.
- Parameters:
name
- Mandatory java.lang.String parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
removeList
void removeList(java.lang.String name)
Removes a CustomizationList object.
- Parameters:
name
- Mandatory java.lang.String parameter.
-
list
com4j.Com4jObject list(java.lang.Object param)
Gets the CustomizationList specified by name or ID.
Getter method for the COM property "List"
- Parameters:
param
- Mandatory java.lang.Object parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
count
int count()
The number of lists in the CustomizationLists object.
Getter method for the COM property "Count"
- Returns:
- Returns a value of type int
-
listByCount
com4j.Com4jObject listByCount(int count)
Gets the CustomizationList specified by its index number.
Getter method for the COM property "ListByCount"
- Parameters:
count
- Mandatory int parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
isListExist
boolean isListExist(java.lang.String listName)
Checks if the specified customization list exists.
Getter method for the COM property "IsListExist"
- Parameters:
listName
- Mandatory java.lang.String parameter.- Returns:
- Returns a value of type boolean
-
-