Removes a file type from the Save As list added using
ISldWorks::AddFileSaveAsItem2.
.NET Syntax
Visual Basic (Declaration) | |
---|
Function RemoveFileSaveAsItem2( _
ByVal Cookie As System.Integer, _
ByVal MethodName As System.String, _
ByVal Description As System.String, _
ByVal Extension As System.String, _
ByVal DocumentType As System.Integer _
) As System.Boolean |
Visual Basic (Usage) | |
---|
Dim instance As ISldWorks
Dim Cookie As System.Integer
Dim MethodName As System.String
Dim Description As System.String
Dim Extension As System.String
Dim DocumentType As System.Integer
Dim value As System.Boolean
value = instance.RemoveFileSaveAsItem2(Cookie, MethodName, Description, Extension, DocumentType) |
Parameters
- Cookie
- Cookie specified in ISwAddin::ConnectToSW
- MethodName
- Name of application module and function used to save the file as specified in ISldWorks::AddFileSaveAsItem2
- Description
- File description
- Extension
- File extension
- DocumentType
- Type of document to save as defined in swDocumentTypes_e
Return Value
True if the item was removed from the
Save As list, false if not
Example
Private Function SwAddin_ConnectToSW(ByVal ThisSW As Object, ByVal Cookie As Long) As Boolean
...
bWasAdded = pSldWorks.AddFileSaveAsItem2(swCookie, "Test_Callback", "Save As file type", "xyz", 1)
bWasAdded = pSldWorks.AddFileOpenItem3(swCookie, "Test_Callback", "Open File type", "xyz", "", "")
...
End Function
Private Function SwAddin_DisconnectFromSW() As Boolean
...
bWasItemRemoved = pSldWorks.RemoveFileSaveAsItem2(swCookie, "Test_Callback", "Save As file type", "xyz", 1)
bWasItemRemoved = pSldWorks.RemoveFileOpenItem2(swCookie, "Test_Callback", "Open File type", "xyz")
...
End Function
Public Sub Test_CallBack(Filename As String)
pSldWorks.SendMsgToUser "Callback called with filename = " & Filename End Sub
Example
See Also
Availability
SOLIDWORKS 2003 FCS, Revision Number 11.0