|
GHUtilsreadElementIDs Method (ListIGH_Goo, ListString, Boolean)
|
read element identifiers from list of strings or elements that have an identifier attached
Namespace:
Karamba.GHopper.Utilities
Assembly:
karambaGH (in karambaGH.dll) Version: 1.15.0.0 (1.15.0.0)
Syntaxpublic static void readElementIDs(
List<IGH_Goo> in_gh_target_elem,
out List<string> beamIDs,
bool add_all_by_default = true
)
Public Shared Sub readElementIDs (
in_gh_target_elem As List(Of IGH_Goo),
<OutAttribute> ByRef beamIDs As List(Of String),
Optional add_all_by_default As Boolean = true
)
public:
static void readElementIDs(
List<IGH_Goo^>^ in_gh_target_elem,
[OutAttribute] List<String^>^% beamIDs,
bool add_all_by_default = true
)
static member readElementIDs :
in_gh_target_elem : List<IGH_Goo> *
beamIDs : List<string> byref *
?add_all_by_default : bool
(* Defaults:
let _add_all_by_default = defaultArg add_all_by_default true
*)
-> unit
Parameters
- in_gh_target_elem
- Type: System.Collections.GenericListIGH_Goo
list of strings or elements - beamIDs
- Type: System.Collections.GenericListString
resulting list of identifiers - add_all_by_default (Optional)
- Type: SystemBoolean
true if all elements shall be added by default
See Also