igGetWindowContentRegionMax() private method

private igGetWindowContentRegionMax ( Vector2 &@out ) : void
@out Vector2
return void
Exemplo n.º 1
0
        public static ImVec2 GetWindowContentRegionMax()
        {
            ImVec2 value;

            ImGuiNative.igGetWindowContentRegionMax(out value);
            return(value);
        }
Exemplo n.º 2
0
        public static Vector2 GetWindowContentRegionMax()
        {
            Vector2 value;

            ImGuiNative.igGetWindowContentRegionMax(out value);
            return(value);
        }
Exemplo n.º 3
0
 public static Vector2 GetWindowContentRegionMax()
 {
     System.Numerics.Vector2 value;
     ImGuiNative.igGetWindowContentRegionMax(out value);
     return(new Vector2(value.X, value.Y));
 }