list of existing skinparam

0 votes
asked Mar 4, 2019 in Question / help by anonymous
In the old plantuml documentation (8039) in paragraph 12.4 we have a list of skinparam in which i found "ClassStereotypeFontColor".It is not easy to remember, how can we found this paramameters list in the new documentation? or does a command line exists?

1 Answer

0 votes
answered Mar 5, 2019 by albert (3,520 points)
 
Best answer

Not really documentation but just a list can be obtained by means of the command:

java -Djava.awt.headless=true -jar plantuml.jar  -language

here there is a section skinparameter

commented May 8, 2021 by kirchsth (4,880 points)

It could be that list is not complete, e.g. I tried it with following line and found 567 skinparam e.g. incl. "RoundCorner". But e.g. the existing "DiagonalCorner" was not in the list (used in sample bewow)

BR
Helmut

java -Djava.awt.headless=true -jar plantuml.1.2021.5.jar  -language
...
;skinparameter
;567
...
DesignedDomainStereotypeFontStyle
DiagramBorderColor
DiagramBorderThickness
DomainBackgroundColor
...
Ranksep
RectangleBackgroundColor
RectangleBorderColor
RectangleBorderThickness
RectangleFontColor
RectangleFontName
RectangleFontSize
RectangleFontStyle
RectangleStereotypeFontColor
RectangleStereotypeFontName
RectangleStereotypeFontSize
RectangleStereotypeFontStyle
RequirementBackgroundColor
...
RoundCorner
...

  "DiagonalCorner" is not listed but can be used

@startuml
skinparam rectangle<<RoundCorner>> {
    RoundCorner 25
}
skinparam rectangle<<DiagonalCorner>> {
    DiagonalCorner 18
}

rectangle "rectangle"

rectangle "rectangleRound" <<RoundCorner>>
rectangle "rectangleDiagonal" <<DiagonalCorner>>
@enduml

...