Parse code fragments into statements. This should be fragments that normally would live inside a method body.
[Visual Basic] MustOverride Public Function GetComponentCode( _ ByVal components() As IComponent, _ ByVal sourceFile As ICodeSourceFile, _ ByVal xOffset As Integer, _ ByVal yOffset As Integer _ ) As String [C#] public abstract string GetComponentCode( IComponent[] components, ICodeSourceFile sourceFile, int xOffset, int yOffset ); [C++] public: virtual String* GetComponentCode( IComponent* components[], ICodeSourceFile* sourceFile, int xOffset, int yOffset ) = 0; [JScript] public abstract function GetComponentCode( components : IComponent[], sourceFile : ICodeSourceFile, xOffset : int, yOffset : int ) : String;
CodePersister Class | CodePersister Members | System.ComponentModel.Design Namespace