The PrescribedFinalGeometry class gives you access to define boundary prescribed final_geometry cards in PRIMER. More...
The PRIMER JavaScript API provides many class constants, properties and methods. For Arup to
be able to extend and enhance the API in the future any constant, property or method names beginning with a lowercase
or uppercase letter are reserved.
If you need to add your own properties or methods to one of the existing classes then to avoid any potential future conflict you
should ensure that the name begins with either an underscore (_) or a dollar sign ($) or the name is prefixed with your
own unique identifier.
For example if company 'ABC' need to add a property called 'example' then to avoid any potential future conflict use one of:
| Name | Type | Description |
| bpfgid | integer | PrescribedFinalGeometry number. Also see the label property which is an alternative name for this. |
| deathd | real | Default death time. |
| exists (read only) | logical | true if boundary prescribed final geometry exists, false if referred to but not defined. |
| id | integer | PrescribedFinalGeometry number. Also see the label property which is an alternative name for this. |
| include | integer | The Include file number that the boundary prescribed final geometry is in. |
| label | integer | PrescribedFinalGeometry number. Also see the bpfgid property which is an alternative name for this. |
| lcidf | integer | Default loadcurve number. |
| lines (read only) | integer | Number of lines of nodal data on the card. |
| model (read only) | integer | The Model number that the boundary prescribed final geometry is in. |
Detailed DescriptionThe PrescribedFinalGeometry class allows you to create, modify, edit and boundary prescribed final_geometry cards. See the documentation below for more details. |
Constructornew PrescribedFinalGeometry(Model[Model], bpfgid[PrescribedFinalGeometry])DescriptionCreate a new PrescribedFinalGeometry object. |
Model that PrescribedFinalGeometry will be created in
PrescribedFinalGeometry number.
ReturnsPrescribedFinalGeometry object Return typePrescribedFinalGeometry |
ExampleTo create a new final geometry 99 in model m var b = new PrescribedFinalGeometry(m, 99);
|
Details of functionsAssociateComment(Comment[Comment])DescriptionAssociates a comment with a boundary prescribed final geometry. |
Comment that will be attached to the boundary prescribed final geometry
ReturnsNo return value |
ExampleTo associate comment c to the boundary prescribed final geometry b: b.AssociateComment(c);
|
Blank()DescriptionBlanks the boundary prescribed final geometry |
No arguments
ReturnsNo return value |
ExampleTo blank boundary prescribed final geometry b: b.Blank();
|
BlankAll(Model[Model], redraw (optional)[boolean]) [static]DescriptionBlanks all of the boundary prescribed final geometrys in the model. |
Model that all boundary prescribed final geometrys will be blanked in
If model should be redrawn or not. If omitted redraw is false. If you want to do several (un)blanks and only redraw after the last one then use false for all redraws apart from the last one. Alternatively you can redraw using View.Redraw().
ReturnsNo return value |
ExampleTo blank all of the boundary prescribed final geometrys in model m: PrescribedFinalGeometry.BlankAll(m);
|
BlankFlagged(Model[Model], flag[Flag], redraw (optional)[boolean]) [static]DescriptionBlanks all of the flagged boundary prescribed final geometrys in the model. |
Model that all the flagged boundary prescribed final geometrys will be blanked in
Flag set on the boundary prescribed final geometrys that you want to blank
If model should be redrawn or not. If omitted redraw is false. If you want to do several (un)blanks and only redraw after the last one then use false for all redraws apart from the last one. Alternatively you can redraw using View.Redraw().
ReturnsNo return value |
ExampleTo blank all of the boundary prescribed final geometrys in model m flagged with f: PrescribedFinalGeometry.BlankFlagged(m, f);
|
Blanked()DescriptionChecks if the boundary prescribed final geometry is blanked or not. |
No arguments
Returnstrue if blanked, false if not. Return typeBoolean |
ExampleTo check if boundary prescribed final geometry b is blanked: if (b.Blanked() ) do_something...
|
Browse(modal (optional)[boolean])DescriptionStarts an edit panel in Browse mode. |
If this window is modal (blocks the user from doing anything else in PRIMER until this window is dismissed). If omitted the window will be modal.
Returnsno return value |
ExampleTo Browse boundary prescribed final geometry b: b.Browse();
|
ClearFlag(flag[Flag])DescriptionClears a flag on the boundary prescribed final geometry. |
Flag to clear on the boundary prescribed final geometry
ReturnsNo return value |
ExampleTo clear flag f for boundary prescribed final geometry b: b.ClearFlag(f);
|
Copy(range (optional)[boolean])DescriptionCopies the boundary prescribed final geometry. The target include of the copied boundary prescribed final geometry can be set using Options.copy_target_include. |
If you want to keep the copied item in the range specified for the current include. Default value is false. To set current include, use Include.MakeCurrentLayer().
ReturnsPrescribedFinalGeometry object Return typePrescribedFinalGeometry |
ExampleTo copy boundary prescribed final geometry b into boundary prescribed final geometry z: var z = b.Copy();
|
Create(Model[Model], modal (optional)[boolean]) [static]DescriptionStarts an interactive editing panel to create a boundary prescribed final geometry |
Model that the boundary prescribed final geometry will be created in.
If this window is modal (blocks the user from doing anything else in PRIMER until this window is dismissed). If omitted the window will be modal.
ReturnsPrescribedFinalGeometry object (or null if not made). Return typePrescribedFinalGeometry |
ExampleTo start creating a boundary prescribed final geometry in model m: var b = PrescribedFinalGeometry.Create(m);
|
DetachComment(Comment[Comment])DescriptionDetaches a comment from a boundary prescribed final geometry. |
Comment that will be detached from the boundary prescribed final geometry
ReturnsNo return value |
ExampleTo detach comment c from the boundary prescribed final geometry b: b.DetachComment(c);
|
Edit(modal (optional)[boolean])DescriptionStarts an interactive editing panel. |
If this window is modal (blocks the user from doing anything else in PRIMER until this window is dismissed). If omitted the window will be modal.
Returnsno return value |
ExampleTo Edit boundary prescribed final geometry b: b.Edit();
|
Error(message[string], details (optional)[string])DescriptionAdds an error for boundary prescribed final geometry. For more details on checking see the Check class. |
The error message to give
An optional detailed error message
ReturnsNo return value |
ExampleTo add an error message "My custom error" for boundary prescribed final geometry b: b.Error("My custom error");
|
First(Model[Model]) [static]DescriptionReturns the first boundary prescribed final geometry in the model. |
Model to get first boundary prescribed final geometry in
ReturnsPrescribedFinalGeometry object (or null if there are no boundary prescribed final geometrys in the model). Return typePrescribedFinalGeometry |
ExampleTo get the first boundary prescribed final geometry in model m: var b = PrescribedFinalGeometry.First(m);
|
FirstFreeLabel(Model[Model], layer (optional)[Include number]) [static]DescriptionReturns the first free boundary prescribed final geometry label in the model. Also see PrescribedFinalGeometry.LastFreeLabel(), PrescribedFinalGeometry.NextFreeLabel() and Model.FirstFreeItemLabel(). |
Model to get first free boundary prescribed final geometry label in
Include file (0 for the main file) to search for labels in (Equivalent to First free in layer in editing panels). If omitted the whole model will be used (Equivalent to First free in editing panels).
ReturnsPrescribedFinalGeometry label. Return typeNumber |
ExampleTo get the first free boundary prescribed final geometry label in model m: var label = PrescribedFinalGeometry.FirstFreeLabel(m);
|
FlagAll(Model[Model], flag[Flag]) [static]DescriptionFlags all of the boundary prescribed final geometrys in the model with a defined flag. |
Model that all boundary prescribed final geometrys will be flagged in
Flag to set on the boundary prescribed final geometrys
ReturnsNo return value |
ExampleTo flag all of the boundary prescribed final geometrys with flag f in model m: PrescribedFinalGeometry.FlagAll(m, f);
|
Flagged(flag[Flag])DescriptionChecks if the boundary prescribed final geometry is flagged or not. |
Flag to test on the boundary prescribed final geometry
Returnstrue if flagged, false if not. Return typeBoolean |
ExampleTo check if boundary prescribed final geometry b has flag f set on it: if (b.Flagged(f) ) do_something...
|
ForEach(Model[Model], func[function], extra (optional)[any]) [static]DescriptionCalls a function for each boundary prescribed final geometry in the model. |
Model that all boundary prescribed final geometrys are in
Function to call for each boundary prescribed final geometry
An optional extra object/array/string etc that will appended to arguments when calling the function
ReturnsNo return value |
GetAll(Model[Model], property (optional)[string]) [static]DescriptionReturns an array of PrescribedFinalGeometry objects or properties for all of the boundary prescribed final geometrys in a model in PRIMER. If the optional property argument is not given then an array of PrescribedFinalGeometry objects is returned. If the property argument is given, that property value for each boundary prescribed final geometry is returned in the array instead of a PrescribedFinalGeometry object |
Model to get boundary prescribed final geometrys from
Name for property to get for all boundary prescribed final geometrys in the model
ReturnsArray of PrescribedFinalGeometry objects or properties Return typeArray |
GetComments()DescriptionExtracts the comments associated to a boundary prescribed final geometry. |
No arguments
ReturnsArray of Comment objects (or null if there are no comments associated to the node). Return typeArray |
ExampleTo get the array of comments associated to the boundary prescribed final geometry b: var comm_array = b.GetComments();
|
GetData(index[integer])DescriptionReturns data for open-ended cards for a given row number in *BOUNDARY_PRESCRIBED_FINAL_GEOMETRY. |
Index of open-ended card you want the data for. Note that indices start at 0, not 1.
0 <= index < lines
ReturnsAn array containing data (NID, X, Y, Z, LCID, DEATH). Return typeArray |
ExampleTo get the data for the 3rd open-ended row for boundary prescribed final geometry b: var data = b.GetData(2);
|
GetFlagged(Model[Model], flag[Flag], property (optional)[string]) [static]DescriptionReturns an array of PrescribedFinalGeometry objects for all of the flagged boundary prescribed final geometrys in a model in PRIMER If the optional property argument is not given then an array of PrescribedFinalGeometry objects is returned. If the property argument is given, then that property value for each boundary prescribed final geometry is returned in the array instead of a PrescribedFinalGeometry object |
Model to get boundary prescribed final geometrys from
Flag set on the boundary prescribed final geometrys that you want to retrieve
Name for property to get for all flagged boundary prescribed final geometrys in the model
ReturnsArray of PrescribedFinalGeometry objects or properties Return typeArray |
GetFromID(Model[Model], number[integer]) [static]DescriptionReturns the PrescribedFinalGeometry object for a boundary prescribed final geometry ID. |
Model to find the boundary prescribed final geometry in
number of the boundary prescribed final geometry you want the PrescribedFinalGeometry object for
ReturnsPrescribedFinalGeometry object (or null if boundary prescribed final geometry does not exist). Return typePrescribedFinalGeometry |
ExampleTo get the PrescribedFinalGeometry object for boundary prescribed final geometry 100 in model m var b = PrescribedFinalGeometry.GetFromID(m, 100);
|
GetParameter(prop[string])DescriptionChecks if a PrescribedFinalGeometry property is a parameter or not. Note that object properties that are parameters are normally returned as the integer or float parameter values as that is virtually always what the user would want. For this function to work the JavaScript interpreter must use the parameter name instead of the value. This can be done by setting the Options.property_parameter_names option to true before calling the function and then resetting it to false afterwards.. This behaviour can also temporarily be switched by using the PrescribedFinalGeometry.ViewParameters() method and 'method chaining' (see the examples below). |
boundary prescribed final geometry property to get parameter for
ReturnsParameter object if property is a parameter, null if not. Return typeParameter |
Keyword()DescriptionReturns the keyword for this PrescribedFinalGeometry (*BOUNDARY_PRESCRIBED_FINAL_GEOMETRY). Note that a carriage return is not added. See also PrescribedFinalGeometry.KeywordCards() |
No arguments
Returnsstring containing the keyword. Return typeString |
ExampleTo get the keyword for PrescribedFinalGeometry bfg: var key = bfg.Keyword();
|
KeywordCards()DescriptionReturns the keyword cards for the PrescribedFinalGeometry. Note that a carriage return is not added. See also PrescribedFinalGeometry.Keyword() |
No arguments
Returnsstring containing the cards. Return typeString |
ExampleTo get the cards for PrescribedFinalGeometry bfg: var cards = bfg.KeywordCards();
|
Last(Model[Model]) [static]DescriptionReturns the last boundary prescribed final geometry in the model. |
Model to get last boundary prescribed final geometry in
ReturnsPrescribedFinalGeometry object (or null if there are no boundary prescribed final geometrys in the model). Return typePrescribedFinalGeometry |
ExampleTo get the last boundary prescribed final geometry in model m: var b = PrescribedFinalGeometry.Last(m);
|
LastFreeLabel(Model[Model], layer (optional)[Include number]) [static]DescriptionReturns the last free boundary prescribed final geometry label in the model. Also see PrescribedFinalGeometry.FirstFreeLabel(), PrescribedFinalGeometry.NextFreeLabel() and see Model.LastFreeItemLabel() |
Model to get last free boundary prescribed final geometry label in
Include file (0 for the main file) to search for labels in (Equivalent to Highest free in layer in editing panels). If omitted the whole model will be used.
ReturnsPrescribedFinalGeometry label. Return typeNumber |
ExampleTo get the last free boundary prescribed final geometry label in model m: var label = PrescribedFinalGeometry.LastFreeLabel(m);
|
Next()DescriptionReturns the next boundary prescribed final geometry in the model. |
No arguments
ReturnsPrescribedFinalGeometry object (or null if there are no more boundary prescribed final geometrys in the model). Return typePrescribedFinalGeometry |
ExampleTo get the boundary prescribed final geometry in model m after boundary prescribed final geometry b: var b = b.Next();
|
NextFreeLabel(Model[Model], layer (optional)[Include number]) [static]DescriptionReturns the next free (highest+1) boundary prescribed final geometry label in the model. Also see PrescribedFinalGeometry.FirstFreeLabel(), PrescribedFinalGeometry.LastFreeLabel() and Model.NextFreeItemLabel() |
Model to get next free boundary prescribed final geometry label in
Include file (0 for the main file) to search for labels in (Equivalent to Highest+1 in layer in editing panels). If omitted the whole model will be used (Equivalent to Highest+1 in editing panels).
ReturnsPrescribedFinalGeometry label. Return typeNumber |
ExampleTo get the next free boundary prescribed final geometry label in model m: var label = PrescribedFinalGeometry.NextFreeLabel(m);
|
Pick(prompt[string], limit (optional)[Model or Flag], modal (optional)[boolean], button text (optional)[string]) [static]DescriptionAllows the user to pick a boundary prescribed final geometry. |
Text to display as a prompt to the user
If the argument is a Model then only boundary prescribed final geometrys from that model can be picked. If the argument is a Flag then only boundary prescribed final geometrys that are flagged with limit can be selected. If omitted, or null, any boundary prescribed final geometrys from any model can be selected. from any model.
If picking is modal (blocks the user from doing anything else in PRIMER until this window is dismissed). If omitted the pick will be modal.
By default the window with the prompt will have a button labelled 'Cancel' which if pressed will cancel the pick and return null. If you want to change the text on the button use this argument. If omitted 'Cancel' will be used.
ReturnsPrescribedFinalGeometry object (or null if not picked) Return typePrescribedFinalGeometry |
Previous()DescriptionReturns the previous boundary prescribed final geometry in the model. |
No arguments
ReturnsPrescribedFinalGeometry object (or null if there are no more boundary prescribed final geometrys in the model). Return typePrescribedFinalGeometry |
ExampleTo get the boundary prescribed final geometry in model m before boundary prescribed final geometry b: var b = b.Previous();
|
RemoveData(index[Integer])DescriptionRemoves a line of data for a *BOUNDARY_PRESCRIBED_FINAL_GEOMETRY. |
The index of the *BOUNDARY_PRESCRIBED_FINAL_GEOMETRY data to remove. Note that indices start at 0, not 1.
0 <= index < lines
ReturnsNo return value. |
ExampleTo remove row 2 (indices start with 0) of open-ended cards for *BOUNDARY_PRESCRIBED_FINAL_GEOMETRY b: b.RemoveData(1);
|
RenumberAll(Model[Model], start[integer]) [static]DescriptionRenumbers all of the boundary prescribed final geometrys in the model. |
Model that all boundary prescribed final geometrys will be renumbered in
Start point for renumbering
ReturnsNo return value |
ExampleTo renumber all of the boundary prescribed final geometrys in model m, from 1000000: PrescribedFinalGeometry.RenumberAll(m, 1000000);
|
RenumberFlagged(Model[Model], flag[Flag], start[integer]) [static]DescriptionRenumbers all of the flagged boundary prescribed final geometrys in the model. |
Model that all the flagged boundary prescribed final geometrys will be renumbered in
Flag set on the boundary prescribed final geometrys that you want to renumber
Start point for renumbering
ReturnsNo return value |
ExampleTo renumber all of the boundary prescribed final geometrys in model m flagged with f, from 1000000: PrescribedFinalGeometry.RenumberFlagged(m, f, 1000000);
|
Select(flag[Flag], prompt[string], limit (optional)[Model or Flag], modal (optional)[boolean]) [static]DescriptionAllows the user to select boundary prescribed final geometrys using standard PRIMER object menus. |
Flag to use when selecting boundary prescribed final geometrys
Text to display as a prompt to the user
If the argument is a Model then only boundary prescribed final geometrys from that model can be selected. If the argument is a Flag then only boundary prescribed final geometrys that are flagged with limit can be selected (limit should be different to flag). If omitted, or null, any boundary prescribed final geometrys can be selected. from any model.
If selection is modal (blocks the user from doing anything else in PRIMER until this window is dismissed). If omitted the selection will be modal.
ReturnsNumber of boundary prescribed final geometrys selected or null if menu cancelled Return typeNumber |
SetData(index[Integer], nid[integer], x[real], y[real], z[real], lcid (optional)[integer], death (optional)[real])DescriptionSets a line of data for a *BOUNDARY_PRESCRIBED_FINAL_GEOMETRY. |
The index of the *BOUNDARY_PRESCRIBED_FINAL_GEOMETRY data to set. Note that indices start at 0, not 1.
0 <= index <= lines
Node or negative node set number.
X coordinates of final geometry.
Y coordinates of final geometry.
Z coordinates of final geometry.
Loadcurve number.
Death time.
ReturnsNo return value. |
SetFlag(flag[Flag])DescriptionSets a flag on the boundary prescribed final geometry. |
Flag to set on the boundary prescribed final geometry
ReturnsNo return value |
ExampleTo set flag f for boundary prescribed final geometry b: b.SetFlag(f);
|
Sketch(redraw (optional)[boolean])DescriptionSketches the boundary prescribed final geometry. The boundary prescribed final geometry will be sketched until you either call PrescribedFinalGeometry.Unsketch(), PrescribedFinalGeometry.UnsketchAll(), Model.UnsketchAll(), or delete the model |
If model should be redrawn or not after the boundary prescribed final geometry is sketched. If omitted redraw is true. If you want to sketch several boundary prescribed final geometrys and only redraw after the last one then use false for redraw and call View.Redraw().
ReturnsNo return value |
ExampleTo sketch boundary prescribed final geometry b: b.Sketch();
|
SketchFlagged(Model[Model], flag[Flag], redraw (optional)[boolean]) [static]DescriptionSketches all of the flagged boundary prescribed final geometrys in the model. The boundary prescribed final geometrys will be sketched until you either call PrescribedFinalGeometry.Unsketch(), PrescribedFinalGeometry.UnsketchFlagged(), Model.UnsketchAll(), or delete the model |
Model that all the flagged boundary prescribed final geometrys will be sketched in
Flag set on the boundary prescribed final geometrys that you want to sketch
If model should be redrawn or not after the boundary prescribed final geometrys are sketched. If omitted redraw is true. If you want to sketch flagged boundary prescribed final geometrys several times and only redraw after the last one then use false for redraw and call View.Redraw().
ReturnsNo return value |
ExampleTo sketch all boundary prescribed final geometrys flagged with flag in model m: PrescribedFinalGeometry.SketchFlagged(m, flag);
|
Total(Model[Model], exists (optional)[boolean]) [static]DescriptionReturns the total number of boundary prescribed final geometrys in the model. |
Model to get total for
true if only existing boundary prescribed final geometrys should be counted. If false or omitted referenced but undefined boundary prescribed final geometrys will also be included in the total.
Returnsnumber of boundary prescribed final geometrys Return typeNumber |
ExampleTo get the total number of boundary prescribed final geometrys in model m: var total = PrescribedFinalGeometry.Total(m);
|
Unblank()DescriptionUnblanks the boundary prescribed final geometry |
No arguments
ReturnsNo return value |
ExampleTo unblank boundary prescribed final geometry b: b.Unblank();
|
UnblankAll(Model[Model], redraw (optional)[boolean]) [static]DescriptionUnblanks all of the boundary prescribed final geometrys in the model. |
Model that all boundary prescribed final geometrys will be unblanked in
If model should be redrawn or not. If omitted redraw is false. If you want to do several (un)blanks and only redraw after the last one then use false for all redraws apart from the last one. Alternatively you can redraw using View.Redraw().
ReturnsNo return value |
ExampleTo unblank all of the boundary prescribed final geometrys in model m: PrescribedFinalGeometry.UnblankAll(m);
|
UnblankFlagged(Model[Model], flag[Flag], redraw (optional)[boolean]) [static]DescriptionUnblanks all of the flagged boundary prescribed final geometrys in the model. |
Model that the flagged boundary prescribed final geometrys will be unblanked in
Flag set on the boundary prescribed final geometrys that you want to unblank
If model should be redrawn or not. If omitted redraw is false. If you want to do several (un)blanks and only redraw after the last one then use false for all redraws apart from the last one. Alternatively you can redraw using View.Redraw().
ReturnsNo return value |
ExampleTo unblank all of the boundary prescribed final geometrys in model m flagged with f: PrescribedFinalGeometry.UnblankFlagged(m, f);
|
UnflagAll(Model[Model], flag[Flag]) [static]DescriptionUnsets a defined flag on all of the boundary prescribed final geometrys in the model. |
Model that the defined flag for all boundary prescribed final geometrys will be unset in
Flag to unset on the boundary prescribed final geometrys
ReturnsNo return value |
ExampleTo unset the flag f on all the boundary prescribed final geometrys in model m: PrescribedFinalGeometry.UnflagAll(m, f);
|
Unsketch(redraw (optional)[boolean])DescriptionUnsketches the boundary prescribed final geometry. |
If model should be redrawn or not after the boundary prescribed final geometry is unsketched. If omitted redraw is true. If you want to unsketch several boundary prescribed final geometrys and only redraw after the last one then use false for redraw and call View.Redraw().
ReturnsNo return value |
ExampleTo unsketch boundary prescribed final geometry b: b.Unsketch();
|
UnsketchAll(Model[Model], redraw (optional)[boolean]) [static]DescriptionUnsketches all boundary prescribed final geometrys. |
Model that all boundary prescribed final geometrys will be unblanked in
If model should be redrawn or not after the boundary prescribed final geometrys are unsketched. If omitted redraw is true. If you want to unsketch several things and only redraw after the last one then use false for redraw and call View.Redraw().
ReturnsNo return value |
ExampleTo unsketch all boundary prescribed final geometrys in model m: PrescribedFinalGeometry.UnsketchAll(m);
|
UnsketchFlagged(Model[Model], flag[Flag], redraw (optional)[boolean]) [static]DescriptionUnsketches all flagged boundary prescribed final geometrys in the model. |
Model that all boundary prescribed final geometrys will be unsketched in
Flag set on the boundary prescribed final geometrys that you want to unsketch
If model should be redrawn or not after the boundary prescribed final geometrys are unsketched. If omitted redraw is true. If you want to unsketch several things and only redraw after the last one then use false for redraw and call View.Redraw().
ReturnsNo return value |
ExampleTo unsketch all boundary prescribed final geometrys flagged with flag in model m: PrescribedFinalGeometry.UnsketchAll(m, flag);
|
No arguments
ReturnsPrescribedFinalGeometry object. Return typePrescribedFinalGeometry |
ExampleTo check if PrescribedFinalGeometry property b.example is a parameter by using the PrescribedFinalGeometry.GetParameter() method: if (b.ViewParameters().GetParameter(b.example) ) do_something...
|
Warning(message[string], details (optional)[string])DescriptionAdds a warning for boundary prescribed final geometry. For more details on checking see the Check class. |
The warning message to give
An optional detailed warning message
ReturnsNo return value |
ExampleTo add a warning message "My custom warning" for boundary prescribed final geometry b: b.Warning("My custom warning");
|
Xrefs()DescriptionReturns the cross references for this boundary prescribed final geometry. |
No arguments
ReturnsXrefs object. Return typeXrefs |
ExampleTo get the cross references for boundary prescribed final geometry b: var xrefs = b.Xrefs();
|
toString()DescriptionCreates a string containing the PrescribedFinalGeometry data in keyword format. Note that this contains the keyword header and the keyword cards. See also PrescribedFinalGeometry.Keyword() and PrescribedFinalGeometry.KeywordCards(). |
No arguments
Returnsstring Return typeString |
ExampleTo get data for PrescribedFinalGeometry bfg in keyword format var s = bfg.toString();
|