Component
Link to component
Importare la Classe
Link to importare-la-classe
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.text.Component;
Interfacce Implementate
Link to interfacce-implementate
Component implements the following interfaces. That means all methods defined in these interfaces are also available in Component
Metodi
Link to metodi
Name: copy
Return Type: MutableComponent
ZenScript Copy// Component.copy() as MutableComponent
myComponent.copy();
Name: getContents
Return Type: string
ZenScript Copy// Component.getContents() as string
myComponent.getContents();
Name: getSiblings
Return Type: stdlib.List<Component>
ZenScript Copy// Component.getSiblings() as stdlib.List<Component>
myComponent.getSiblings();
Name: getString
Return Type: string
ZenScript CopyComponent.getString(maxLength as int) as string
Parametro | Tipo | Descrizione |
---|---|---|
Parametro maxLength | Tipo int | Descrizione No Description Provided |
Name: getStyle
Return Type: Style
ZenScript Copy// Component.getStyle() as Style
myComponent.getStyle();
Name: plainCopy
Return Type: MutableComponent
ZenScript Copy// Component.plainCopy() as MutableComponent
myComponent.plainCopy();
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome contents | Tipo string | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome siblings | Tipo stdlib.List<Component> | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome stile | Tipo Style | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |