| ProjectSave Method (Boolean, EncodingType) | 
 
            Saves this project to Xml, to the file stored inside this project's properties.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.ProjectClasses
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.2.0.0 (5.2.17.0403)
 Syntax
Syntaxpublic bool Save(
	bool keepMarkedAsChanged,
	EncodingType encodingToUse
)
Public Function Save ( 
	keepMarkedAsChanged As Boolean,
	encodingToUse As EncodingType
) As Boolean
Parameters
- keepMarkedAsChanged
- Type: SystemBoolean
 if set to true keeps the project file marked as Changed, if changed..
- encodingToUse
- Type: SD.LLBLGen.Pro.CoreEncodingType
 The encoding to use.
Return Value
Type: 
Boolean
            true if save succeeded, false if save was aborted
            
 Remarks
Remarks
            uses MessageBox.Show for error/warning display. if you want to save this project in a non-interactive environment or console application
            please use the Save overload which accepts Func/Action delegates to customize this behavior.
            
 See Also
See Also