Пример #1
0
        public object Clone()
        {
            Attachments at = new Attachments();
            foreach (attachmentASS a in Graphics)
                at.GetGraphicsAttachmentList().Add(a.Clone());

            foreach (attachmentASS a in Fonts)
                at.GetFontsAttachmentList().Add(a.Clone());

            return at;
        }
Пример #2
0
        private void InitVariables()
        {
            Header = new headerASS();
            Styles = new ArrayList();
            Lines = new LineArrayList();
            Attachments = new Attachments();

            name = "Nuevo Archivo de PerrySub.ass";
        }