As I see the problem is that you use NativeImage::DrawImage on the wrong
way. You need something similar to this: float wScale = 64.0f /
image.GetWidth(); float hScale = 64.0f / image.GetHeight();
context.DrawImage (image, wScale, hScale, 0.0, 0.0, 0...
Traro wrote:Now GetDefaults & ChangeDefault i can done but Door Marker
is Incorrect. Hi Traro, See answer on the original topic:
http://archicad-talk.graphisoft.com/viewtopic.php?t=48448
To load also the default parameters (e.g. marker) of the door object
from library, amend the code as the following lines shows ('+' means
additions): ... // Change libInd of the default door to the new one {
API_Element mask; ACAPI_ELEMENT_MASK_CLEAR...
Ralph wrote:Traro wrote:I would like to ChangeDefaults Door and
Window(Change Object). Ex. - I have 2 door object [MyDoor1.gsm ,
MyDoor2.gsm]. - And "MyDoor1" is Defaults object then i would like
change to "MyDoor2" object. I suggest first getting th...
Hi, Additional thing. If you need to define the behavior of your
TabPage, you should create seperate TabPage and TabPageObserver classes
like this: #include "DGTabPage.hpp" #include "DGEditControl.hpp"
#include "APIEnvir.h" #include "ACAPinc.h"
//---...