構文
BOOL GetSiteUpDown(VARIANT * vVertex,
BYTE * byInputType, double * dPolygonHeight, USHORT * uBaseLineIndex,
double
* dBaseLineHeight, double * dGradient, VARIANT * vSelectPointArray,
VARIANT * vZPos);
カレントのオブジェクトが、敷地高低差オブジェクトの場合、その情報を取得します。
パラメータ
vVertex
(x, y) 頂点列。型は VT_R8 | VT_ARRAY にしてください。vVertex.parrayは不要になったら、SafeArrayDestroyで解放してください。
byInputType
高さの指定方法。次のいずれかの値を指定できます。
- 0面の高さを指定。
- 1辺と勾配を指定。
- 23点の高さを指定。
dPolygonHeight
高さ。単位ミリ。
uBaseLineIndex
勾配の基準となる辺。
dBaseLineHeight
基準となる辺の高さ。単位ミリ。
dGradient
勾配(%)。
vSelectPointArray
高さを決定する頂点配列。配列要素は、3。型は、VT_UI2 | VT_ARRAY
にしてください。vSelectPointArray.parrayは不要になったら、SafeArrayDestroyで解放してください。
vZPos
高さの配列。型は、VT_R8 | VT_ARRAY にしてください。vZPos.parrayは不要になったら、SafeArrayDestroyで解放してください。
戻り値
敷地敷地高低差オブジェクトの情報を取得できた場合 0 以外を返します。できなかった場合は 0 を返します。
使用例
// 間取りオブジェクトへ接続 CMadoriDoc * m_MadoriDoc = new CMadoriDoc(); CLSIDFromProgID (L"MyHomeDesignerMadori.MadoriDoc", &clsid); GetActiveObject (clsid, NULL, &pUnk); pUnk->QueryInterface (IID_IDispatch, (void**)(&pDisp)); m_MadoriDoc->AttachDispatch (pDisp); // 列挙する long lRet = m_MadoriDoc->GetTopObject(); if(lRet == 0) AfxMessageBox("何もない"); while(lRet){ ULONG uType = m_MadoriDoc->GetCurrentObjectType(); short nLayer = m_MadoriDoc->GetCurrentObjectLayer(); CString strMsg; strMsg.Format("[%X]type[%d]layer[%d]", lRet, uType,nLayer); AfxMessageBox(strMsg); lRet = m_MadoriDoc->GetNextObject(); switch(uType){ case 30: // geo feature { VARIANT vVertex; unsigned char byInputType; double dPolygonHeight; unsigned short uBaseLineIndex; double dBaseLineHeight, dGradient; VARIANT vSelectPointArray, vZPos; vVertex.vt = VT_R8 | VT_ARRAY; vVertex.parray = NULL; vSelectPointArray.vt = VT_UI2 | VT_ARRAY; vSelectPointArray.parray = NULL; vZPos.vt = VT_R8 | VT_ARRAY; vZPos.parray = NULL; m_MadoriDoc->GetSiteUpDown(&vVertex, &byInputType, &dPolygonHeight, &uBaseLineIndex, &dBaseLineHeight, &dGradient, &vSelectPointArray, &vZPos); ULONG uVertex = 0; if(vVertex.parray){ uVertex = vVertex.parray->rgsabound[0].cElements; } ULONG uSelectPointArray = 0; if(vSelectPointArray.parray){ uSelectPointArray = vSelectPointArray.parray->rgsabound[0].cElements; } ULONG uZPos = 0; if(vZPos.parray){ uZPos = vZPos.parray->rgsabound[0].cElements; } strMsg.Format("geo feature v[%u]type[%d]h[%lf]base[%u]lineH[%lf]gra[%lf]point[%u]z[%u]", uVertex/2, byInputType, dPolygonHeight, uBaseLineIndex, dBaseLineHeight, dGradient, uSelectPointArray, uZPos); AfxMessageBox(strMsg); if(uVertex > 0){ double * pVar; SafeArrayAccessData(vVertex.parray, (void**)&pVar); for(ULONG u = 0; u < uVertex; u+=2){ strMsg.Format("Vertex %u[%lf,%lf]", u/2, pVar[u], pVar[u+1]); AfxMessageBox(strMsg); } SafeArrayUnaccessData(vVertex.parray); } if(vVertex.parray) SafeArrayDestroy(vVertex.parray); if(uSelectPointArray > 0){ unsigned short * pVar; SafeArrayAccessData(vSelectPointArray.parray, (void**)&pVar); for(ULONG u = 0; u < uSelectPointArray; ++u){ strMsg.Format("select point %u[%u]", u, pVar[u]); AfxMessageBox(strMsg); } SafeArrayUnaccessData(vSelectPointArray.parray); } if(vSelectPointArray.parray) SafeArrayDestroy(vSelectPointArray.parray); if(uZPos > 0){ double * pVar; SafeArrayAccessData(vZPos.parray, (void**)&pVar); for(ULONG u = 0; u < uZPos; ++u){ strMsg.Format("z %u[%lf]", u, pVar[u]); AfxMessageBox(strMsg); } SafeArrayUnaccessData(vZPos.parray); } if(vZPos.parray) SafeArrayDestroy(vZPos.parray); } break; } lRet = m_MadoriDoc->GetNextObject(); }