Enum UmlScope
Specifies the visibility scope of UML classifier members, such as attributes and operations.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.Diagram.dll
Syntax
public enum UmlScope
Remarks
The scope determines the accessibility of a member and is typically represented using standard UML symbols in the diagram (e.g., +, −, #, ~).
Fields
| Name | Description |
|---|---|
| Package | "Indicates package-level visibility for the member. Rendered using the "~" symbol in UML notation. Accessible only within the same package or module." |
| Private | "Indicates that the member is accessible only within its declaring classifier. Rendered using the "−" symbol in UML notation." |
| Protected | "Indicates that the member is accessible to subclasses and within the same package.Rendered using the "#" symbol in UML notation." |
| Public | Indicates that the member is publicly accessible. Rendered using the "+" symbol in UML notation. Accessible from any classifier. |