Checks a system variable for an incorrect value.
Supported platforms: Windows only
Namespace: AcStMgr
Assembly: AcStMgr.tlb
For internal use only.
VB.NET:
RetVal = object.CheckSysvar(sysVarName, bGetAllFixes)
C#:
RetVal = object.CheckSysvar(sysVarName, ref bGetAllFixes);
Type: AcStErrorIterator object
The object this method applies to.
Access: Input-only
Type: String
The name of the system variable to check.
Access: Input-only
Type: Boolean
VB.NET:
Public Function CheckSysvar(sysVarName, bGetAllFixes) As Boolean _
Implements AcStMgr.IAcStPlugin2.CheckSysvar
Return ...
End Function
C#:
public bool Done(sysVarName, bGetAllFixes)
{
return ...;
}
Type: IAcStPlugin2 object
The object this method applies to.
Access: Input-only
Type: String
The name of the system variable to check.
Access: Input-only
Type: Boolean
Access: Output-only
Type: Boolean
Type: Boolean
No additional remarks.
Releases: AutoCAD 2004 and later
VB.NET:
Not available
C#:
Not available
VB.NET:
Public Sub CheckSysvar(ByVal syvarName As String, _
ByVal bGetAllFixes As Boolean, _
ByRef bPassFail As Boolean) _
Implements IAcStPlugin2.CheckSysvar
' Not implemented
End Sub
C#:
public void CheckSysvar(string syvarName, bool bGetAllFixes, ref bool bPassFail)
{
// Not implemented
}