ReadonlyIf
Definition
public static partial class DrawGUI
{
// Factory method
public static Scope ReadonlyIf(bool condition)
// Extension method (chaining)
public static Scope ReadonlyIf(this Scope scope, bool condition)
// Implementation
private class ReadOnlyIfScope : Scope
}Remarks
Factory Methods
ReadonlyIf
Parameter
Type
Description
Common Pitfalls
Examples
Conditional Read-Only Fields
Chain with Box
Chain with Colorize for Visual Feedback
See Also
Last updated