Example #1
0
 public SymbolStyle()
 {
     symbolType      = SymbolTypeEnum.None;
     symbolSize      = 6.0f;
     symbolColor     = new GraphColor();
     borderThickness = 1f;
 }
Example #2
0
 public SymbolStyle()
 {
     symbolType      = SymbolTypeEnum.None;
     symbolSize      = 8.0f;
     borderColor     = Color.Black;
     fillColor       = Color.White;
     borderThickness = 1f;
 }
 public SymbolStyle()
 {
     symbolType = SymbolTypeEnum.None;
     symbolSize = 8.0f;
     borderColor = Color.Black;
     fillColor = Color.White;
     borderThickness = 1f;
 }
 public Symbols()
 {
     symbolType      = SymbolTypeEnum.None;
     symbolSize      = 8.0;
     borderColor     = Brushes.Black;
     fillColor       = Brushes.Black;
     borderThickness = 1.0;
 }
Example #5
0
        public NsoSymbol(Elf64_Sym sym, byte[] strTableBuff)
        {
            List <byte> strBuff = new List <byte>();

            for (uint c = sym.st_name; c < strTableBuff.Length && strTableBuff[c] != 0; c++)
            {
                strBuff.Add(strTableBuff[c]);
            }

            Value   = Encoding.UTF8.GetString(strBuff.ToArray());
            Address = sym.st_value;
            Size    = sym.st_size;
            Binding = (SymbolBindingEnum)(sym.st_info >> 4);
            Type    = (SymbolTypeEnum)(sym.st_info & 0xF);
        }
Example #6
0
 /**
  * <summary>Gets the code corresponding to the given value.</summary>
  */
 private static PdfName ToCode(
     SymbolTypeEnum value
     )
 {
     return(SymbolTypeEnumCodes[value]);
 }
Example #7
0
File: Caret.cs Project: n9/pdfclown
 /**
   <summary>Gets the code corresponding to the given value.</summary>
 */
 private static PdfName ToCode(
     SymbolTypeEnum value
     )
 {
     return SymbolTypeEnumCodes[value];
 }