Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Indicates that the ATL project supports nonattributed objects.
function CanAddNonAttributed( );
Return Value
true if the project supports nonattributed and attributed ATL objects; false if the project supports only attributed projects.
Remarks
Call this function to indicate whether the project supports both nonattributed and attributed objects.
Example
// Check if attributed project using CanAddNonAttributed
window.external.Load(document);
if (IsAttributedProject(window.external))
{
ATTRIBUTED.checked = true;
if (!CanAddNonAttributed())
ATTRIBUTED.disabled = true;
}
See Also
Tasks
Reference
Concepts
Customizing C++ Wizards with Common JScript Functions