API Documentation > Interfaces > Interface MaterialProperty
Interface MaterialProperty

package com.ptc.pfc.pfcPart;

public interface
MaterialProperty
extends
jxobject


Description
This class specifies a value/units pair for a material property.
Method Summary
/*optional*/ String
Get method for attribute "Units"
The units material property.null represents a property that doesn't use units, or a property that is using the units of the owner part.
double
Get method for attribute "Value"
The value of the material property in the property units.
void
SetUnits ( /*optional*/ String value)
Set method for attribute "Units"
The units material property.null represents a property that doesn't use units, or a property that is using the units of the owner part.
void
SetValue (double value)
Set method for attribute "Value"
The value of the material property in the property units.
Method Detail
GetValue
double
GetValue
()
SetValue
void
SetValue
(double value)
The value of the material property in the property units.
GetUnits
/*optional*/ String
GetUnits
()
SetUnits
void
SetUnits
( /*optional*/ String value)
The units material property. null represents a property that doesn't use units, or a property that is using the units of the owner part.
Was this helpful?