예제 #1
0
파일: BaseTypes.cs 프로젝트: 89sos98/npoi
 public static CT_EmbeddedWAVAudioFile Parse(XmlNode node, XmlNamespaceManager namespaceManager)
 {
     if (node == null)
         return null;
     CT_EmbeddedWAVAudioFile ctObj = new CT_EmbeddedWAVAudioFile();
     ctObj.embed = XmlHelper.ReadString(node.Attributes["embed"]);
     ctObj.name = XmlHelper.ReadString(node.Attributes["name"]);
     ctObj.builtIn = XmlHelper.ReadBool(node.Attributes["builtIn"]);
     return ctObj;
 }
예제 #2
0
 public CT_Hyperlink()
 {
     this.extLstField = new CT_OfficeArtExtensionList();
     this.sndField = new CT_EmbeddedWAVAudioFile();
     this.invalidUrlField = "";
     this.actionField = "";
     this.tgtFrameField = "";
     this.tooltipField = "";
     this.historyField = true;
     this.highlightClickField = false;
     this.endSndField = false;
 }