Expand Minimize
This topic has not yet been rated - Rate this topic

ErrorCheckBounds Property

Visual Studio .NET 2003

Specifies error check of size versus transmission length specifications. Exposes the functionality of the /error MIDL option.

[Visual Basic .NET]
Public Property ErrorCheckBounds() As Boolean
[Visual Basic 6]
Property Get ErrorCheckBounds() As Boolean
Property Let ErrorCheckBounds( _
   ByVal NewValue As Boolean _
) 
[C++]
HRESULT __stdcall get_ErrorCheckBounds(
   /* [out, retval] */ VARIANT_BOOL* retVal
);
HRESULT __stdcall put_ErrorCheckBounds(
   /* [in] */ VARIANT_BOOL NewValue
);
[C#]
public bool ErrorCheckBounds {get; set;}
[JScript .NET]
public function get ErrorCheckBounds() : Boolean
public function set ErrorCheckBounds(
   NewValue : Boolean
)

Example

The following sample code modifies the ErrorCheckBounds property in the development environment:

' 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 VCMidlTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCMIDLTool")
        tool.ErrorCheckBounds = True
    End Sub
End Module

See Samples for Project Model Extensibility for information on how to compile and run this sample.

See Also

Applies To: VCMidlTool Object

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.