構文
void Get3DRoof(double * dRoofSlope, USHORT * uEavesOut, USHORT
* uEavesStyle,
USHORT * uEavesThick,
USHORT * uParapetRisingEdge, USHORT * uParapetFallingEdge);
屋根の立体化パラメータを取得します。
パラメータ
dRoofSlope
屋根勾配。
uEavesOut
軒の出。
uEavesStyle
軒天井の種類。次のいずれかの値です。
- 0通常。
- 1勾配。
- 2水平。
uEavesThick
軒天厚。
uParapetRisingEdge
パラペット立上り。
uParapetFallingEdge
パラペット立下り。
使用例
// 間取りオブジェクトへ接続 CMadoriDoc * m_MadoriDoc = new CMadoriDoc(); CLSIDFromProgID (L"MyHomeDesignerMadori.MadoriDoc", &clsid); GetActiveObject (clsid, NULL, &pUnk); pUnk->QueryInterface (IID_IDispatch, (void**)(&pDisp)); m_MadoriDoc->AttachDispatch (pDisp); // 立体化設定 double dRoofSlope; USHORT uEavesOut, uEavesStyle, uEavesThick, uParapetRisingEdge, uParapetFallingEdge; m_MadoriDoc->Get3DRoof(&dRoofSlope, &uEavesOut, &uEavesStyle, &uEavesThick, &uParapetRisingEdge, &uParapetFallingEdge);