Share

AcGsClientViewInfo

C++

struct AcGsClientViewInfo {
  Adesk::LongPtr viewportId;
  Adesk::LongPtr acadWindowId;
  Adesk::IntDbId viewportObjectId;
  AcGiContextualColors * contextColors;
};

File

gs.h

Description

Struct contains the viewport ID, AutoCAD window ID, viewport object ID, and a pointer to the contextual colors object for the viewport.

Links

AcGsClientViewInfo Data Members, AcGsClientViewInfo Methods

Previous Declaration

AutoCAD 2015 through AutoCAD 2024

struct AcGsClientViewInfo {

Adesk::LongPtr viewportId;

Adesk::LongPtr acadWindowId;

Adesk::IntDbId viewportObjectId;

AcGiContextualColors * contextColors;

AcGiContextualAttributes *contextualAttributes;

};

AutoCAD 2014 and earlier

struct AcGsClientViewInfo {

LONG_PTR viewportId;

LONG_PTR acadWindowId;

LONG_PTR viewportObjectId;

AcGiContextualColors* contextColors;

};

History

AutoCAD 2025

contextualAttributes argument was removed.

AutoCAD 2015

Arguments that previously were defined as LONG_PTR are now Adesk::LongPtr and Adesk::IntDbId instead, and the contextualAttributes argument was added.

Was this information helpful?