References > Creo Schematics 4.0 API Guide > The Design Package > Class Locationset
  
Class Locationset
This abstract class represents a location set of a design sheet in the design.
public class Locationset
extends rsdesigner.design
Hierarchical Diagram
Direct Known Subclasses
None
Constructor
None
Methods
getName
Returns the name of the location set.
public String getName()
Throws: RSDException
isSequentialNumbering
Returns true if the location set sequentially allocates numbers to the columns across sheets.
public boolean isSequentialNumbering()
Throws: RSDException
getSheets
Returns an iterator of all the design sheets present in the location set in the order of the sequence numbers allocated to the sheets. Each element in the iterator is a one-element array that contains sheet related information.
public Iterator getSheets()
Throws: RSDException
getSheetVector
Returns a vector of all the design sheets present in the location set in the order of the sequence numbers allocated to the sheets.
public Vector getSheetVector()
Throws: RSDException
numberOfSheets
Returns the number of design sheets present in the location set.
public int numberOfSheets()
Throws: RSDException
getSequenceNumberForSheet
Returns the sequence number for a specified sheet present in the location set.
public int getSequenceNumberForSheet(Sheet aSheet)
Throws: RSDException
Where:
aSheet—The sheet to query.
getLabelFormat
Returns the Java label function of the location set.
public String getLabelFormat(boolean forRow)
Where:
forRow—If true, returns row label function. Else, returns column label function.
Throws: RSDException
toString
Returns a string representation of the location set.
public String toString()
Throws: RSDException
Methods Inherited
None