<Code Lib>
2026 Method
Changes 0
M

FabricSheetType.SetLayoutAsCustomPattern

Description:
Sets the minor and major layout patterns as Custom, while specifying the needed parameters for this pattern.
Remarks:
The following properties are not used for custom fabric sheet type: - MajorDirectionWireType; - MinorDirectionWireType; - MajorSpacing; - MinorSpacing.

public void SetLayoutAsCustomPattern(
	double minorStartOverhang,
	double majorStartOverhang,
	IList<FabricWireItem> minorFabricWireItems,
	IList<FabricWireItem> majorFabricWireItems
)

  • Double
    minorStartOverhang
    The distance from the edge of the sheet to the first wire in the minor direction.
  • Double
    majorStartOverhang
    The distance from the edge of the sheet to the first wire in the major direction.
  • minorFabricWireItems
    The fabric wire items in the minor direction.
  • majorFabricWireItems
    The fabric wire items in the major direction.

  • The given value for minorStartOverhang is not a number -or- The given value for majorStartOverhang is not a number
  • A non-optional argument was null
  • The given value for minorStartOverhang must be between 0 and 30000 feet. -or- The given value for majorStartOverhang must be between 0 and 30000 feet.

Loading…