BoolToggle.cs declarations
Public API declaration excerpts from ../bitquirky-graph/Editor/GraphView/Controls/BoolToggle.cs.
Source snapshot ad0983d00d77.
On this page
Original file: ../bitquirky-graph/Editor/GraphView/Controls/BoolToggle.cs
Source file hash: sha256:fe36fe0146e9d8f393b5892b48cd25bf9984e482d989d0d7b75b86ccf867059c
Only public declaration headers are shown. Implementation bodies, non-public code, and source comments are omitted.
Type: BoolToggle
Section titled “Type: BoolToggle”Original lines: 22-112
Declaration hash: sha256:fa8e8fdc9000fe8d7e12d542a29d65c91900d0e8954538d6a3dc2cc0772b7a32
public sealed class BoolToggle : VisualElement{}Field: RootClass
Section titled “Field: RootClass”Original lines: 25
Declaration hash: sha256:5133324879f1de556264c9505a7d85aa2be9b905c47856ee0dd7931adc439127
public const string RootClass = "ed-bool-toggle";Field: SwitchClass
Section titled “Field: SwitchClass”Original lines: 27
Declaration hash: sha256:0eac7ab842a13631748e23e168f37e3b6c1baefa64df71617ddd1e4527f4151c
public const string SwitchClass = RootClass + "__switch";Field: KnobClass
Section titled “Field: KnobClass”Original lines: 29
Declaration hash: sha256:85387f32eeca585294edbb6d797f8e979b472e47d5dd61afd9d26fea270a2ae5
public const string KnobClass = RootClass + "__knob";Field: KnobOnClass
Section titled “Field: KnobOnClass”Original lines: 31
Declaration hash: sha256:ddcbca8f41232a0e7201dffe869a21dbfcf2c4a922d3f47e6ac12f2ea834b369
public const string KnobOnClass = KnobClass + "--on";Field: ReadingClass
Section titled “Field: ReadingClass”Original lines: 33
Declaration hash: sha256:55e41028ea388d6eaae40f9544d99caf411bc8bfb67b8808e2ebff1a2183c802
public const string ReadingClass = RootClass + "__reading";Field: TrueText
Section titled “Field: TrueText”Original lines: 36
Declaration hash: sha256:78ed775d01758075c2948fbb3edba6bfe1c7665172fa85b039ca5a276d3f008b
public const string TrueText = "true";Field: FalseText
Section titled “Field: FalseText”Original lines: 38
Declaration hash: sha256:46bb5b918870a4f444a1f683e1b49d60ba6043c430f2406ca911b1f55609b642
public const string FalseText = "false";Event: OnValueChanged
Section titled “Event: OnValueChanged”Original lines: 45
Declaration hash: sha256:a77da60bffccfc7d5e74acda2343142b201945f2ce8a2b0a31cd8c8c5a6bb3c9
public event Action<bool> OnValueChanged;Property: Switch
Section titled “Property: Switch”Original lines: 48
Declaration hash: sha256:836fdf805a1abd868c3e9c9854aa3103cf193b3e540c3358e980d7d0731c4ebb
public Toggle Switch { get; }Property: ReadingLabel
Section titled “Property: ReadingLabel”Original lines: 51
Declaration hash: sha256:f7b6dd6d2ea690b0fdcc385ec0087bb97edb931d262ff7196954eb31b88127f8
public Label ReadingLabel { get; }Method: BoolToggle(string controlName)
Section titled “Method: BoolToggle(string controlName)”Original lines: 58-85
Declaration hash: sha256:69df93a23e5433869a48ce2f75ac5e341c6491110a72ab844ef5af925c68a622
public BoolToggle(string controlName);Property: Value
Section titled “Property: Value”Original lines: 88-96
Declaration hash: sha256:5654999aa6f8245d7a7356ea951779c1df384d6e7484d0aa6c8e720bc9aa86e3
public bool Value { get; set; }