igBeginChildEx() private method

private igBeginChildEx ( uint id, Vector2 size, bool border, WindowFlags extra_flags ) : bool
id uint
size Vector2
border bool
extra_flags WindowFlags
return bool
Ejemplo n.º 1
0
 public static bool BeginChild(uint id, Vector2 size, bool border, WindowFlags flags)
 {
     return(ImGuiNative.igBeginChildEx(id, size, border, flags));
 }
Ejemplo n.º 2
0
 public static bool BeginChild(uint id, ImVec2 size, bool border, ImGuiWindowFlags flags)
 => ImGuiNative.igBeginChildEx(id, size, border, flags);