S or /

SourceClass UiStackInfo

from egui import UiStackInfo
class UiStackInfo:

Information about a egui.Ui to be included in the corresponding UiStack.

Properties§

@property def frame(self, /) -> Frame§
@frame.setter def frame(self, /, frame: Frame) -> None§
@property def kind(self, /) -> UiKind |None§
@kind.setter def kind(self, /, kind: UiKind |None) -> None§

Methods§

@staticmethod def default() -> UiStackInfo§
def has_tag(self, /, key: str) -> bool§
def tag_bool(self, /, key: str) -> bool |None§
def tag_float(self, /, key: str) -> float |None§
def tag_int(self, /, key: str) -> int |None§
def tag_keys(self, /) -> list[str]§
def tag_string(self, /, key: str) -> str |None§
Sourcedef with_frame(self, /, frame: Frame) -> UiStackInfo§
Sourcedef with_tag(self, /, key: str) -> UiStackInfo§

Insert a tag with no value.

def with_tag_bool(self, /, key: str, value: bool) -> UiStackInfo§
def with_tag_float(self, /, key: str, value: float) -> UiStackInfo§
def with_tag_int(self, /, key: str, value: int) -> UiStackInfo§
def with_tag_string(self, /, key: str, value: str) -> UiStackInfo§