| Library | Package | Frames | Expand | Java Toolkit |
| Method Summary | |
|---|---|
| /*optional*/ ColorRGB | GetColor
()
Get method for attribute "Color" The color of the detail item. If null, the default drawing color is used. |
| /*optional*/ String | GetFontName
()
Get method for attribute "FontName" The name of the linestyle. If null, the default linestyle is used. |
| CurveDescriptor | GetGeometry
()
Get method for attribute "Geometry" The geometry of the detail entity. |
| /*optional*/ Boolean | GetIsConstruction
()
Get method for attribute "IsConstruction" Whether or not the entity is construction. If null, the entity is not a construction entity. |
| /*optional*/ View2D | GetView
()
Get method for attribute "View" The drawing view associated with the entity. This can be a view of a drawing model, or a drawing sheet background view. |
| /*optional*/ Double | GetWidth
()
Get method for attribute "Width" The width of the entity line. If null, the default width is used. |
| void | SetColor
(
/*optional*/
ColorRGB value)
Set method for attribute "Color" The color of the detail item. If null, the default drawing color is used. |
| void | SetFontName
(
/*optional*/
String value)
Set method for attribute "FontName" The name of the linestyle. If null, the default linestyle is used. |
| void | SetGeometry
(CurveDescriptor value)
Set method for attribute "Geometry" The geometry of the detail entity. |
| void | SetIsConstruction
(
/*optional*/
Boolean value)
Set method for attribute "IsConstruction" Whether or not the entity is construction. If null, the entity is not a construction entity. |
| void | SetView
(
/*optional*/
View2D value)
Set method for attribute "View" The drawing view associated with the entity. This can be a view of a drawing model, or a drawing sheet background view. |
| void | SetWidth
(
/*optional*/
Double value)
Set method for attribute "Width" The width of the entity line. If null, the default width is used. |
| Methods Inherited from Interface com.ptc.pfc.pfcDetail.DetailCreateInstructions |
|---|
| GetType, GetId |
| Method Detail |
|---|
| GetGeometry/SetGeometry |
|---|
| CurveDescriptor | GetGeometry | () |
| void | SetGeometry | (CurveDescriptor value) |
| The geometry of the detail entity. When creating a "circle" detail entity, use an arc with a start angle of 0 and an end angle of 2*PI. Creo Parametric represents circle detail entities with the ArcDescriptor object.
|
| GetIsConstruction/SetIsConstruction |
|---|
| /*optional*/ Boolean | GetIsConstruction | () |
| void | SetIsConstruction | ( /*optional*/ Boolean value) |
Whether or not the entity is construction. If null, the entity is not a construction entity.
|
| GetColor/SetColor |
|---|
| /*optional*/ ColorRGB | GetColor | () |
| void | SetColor | ( /*optional*/ ColorRGB value) |
The color of the detail item. If null, the default drawing color is used.
|
| GetFontName/SetFontName |
|---|
| /*optional*/ String | GetFontName | () |
| void | SetFontName | ( /*optional*/ String value) |
| The name of the linestyle. If null, the default linestyle is used. Exceptions thrown (but not limited to): XToolkitNotFound - No font name is specified.
|
| GetWidth/SetWidth |
|---|
| /*optional*/ Double | GetWidth | () |
| void | SetWidth | ( /*optional*/ Double value) |
The width of the entity line. If null, the default width is used.
|
| GetView/SetView |
|---|
| /*optional*/ View2D | GetView | () |
| void | SetView | ( /*optional*/ View2D value) |
| The drawing view associated with the entity. This can be a view of a drawing model, or a drawing sheet background view. Exceptions thrown (but not limited to): XToolkitNotFound - The entity is not attached to a drawing view.
|