共用方式為


VCMidlTool.StructMemberAlignment 屬性

取得或設定結構成員對齊的 1、2、4、8 或 16 位元組界限。

命名空間:  Microsoft.VisualStudio.VCProjectEngine
組件:  Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)

語法

'宣告
Property StructMemberAlignment As midlStructMemberAlignOption
midlStructMemberAlignOption StructMemberAlignment { get; set; }
property midlStructMemberAlignOption StructMemberAlignment {
    midlStructMemberAlignOption get ();
    void set (midlStructMemberAlignOption value);
}
abstract StructMemberAlignment : midlStructMemberAlignOption with get, set
function get StructMemberAlignment () : midlStructMemberAlignOption
function set StructMemberAlignment (value : midlStructMemberAlignOption)

屬性值

型別:Microsoft.VisualStudio.VCProjectEngine.midlStructMemberAlignOption
midlStructMemberAlignOption 列舉型別。

備註

StructMemberAlignment公開 (expose) 功能的 C++ 編譯器的/Zp (結構成員對齊) ] 選項,並且 MIDL 編譯器的MIDL 屬性頁:進階選項。

使用structMemberAlignOption列舉型別,若要變更的值VCCLCompilerTool屬性。

使用midlStructMemberAlignOption正值的VCMidlTool屬性。

[MIDL] 工具不允許 16 位元組的界限。

範例

請參閱HOW TO:編譯專案模型擴充性的範例程式碼如需有關如何編譯及執行這個範例資訊。

下列範例會修改編譯器的StructMemberAlignment在整合式的開發環境 (IDE) 中的屬性:

[Visual Basic]

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim cfgs, tools As IVCCollection
        Dim cfg As VCConfiguration
        Dim tool As VCCLCompilerTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCCLCompilerTool")
        tool.StructMemberAlignment = structMemberAlignOption.alignSixteenBytes
    End Sub
End Module

.NET Framework 安全性

請參閱

參考

VCMidlTool 介面

Microsoft.VisualStudio.VCProjectEngine 命名空間