UIFont.RemoveSymbol C# (CSharp) Method

RemoveSymbol() public method

Remove the specified symbol from the font.
public RemoveSymbol ( string sequence ) : void
sequence string
return void
    public void RemoveSymbol(string sequence)
    {
        BMSymbol symbol = GetSymbol(sequence, false);
        if (symbol != null) symbols.Remove(symbol);
        MarkAsDirty();
    }

Usage Example

コード例 #1
0
 static public int RemoveSymbol(IntPtr l)
 {
     try {
         UIFont        self = (UIFont)checkSelf(l);
         System.String a1;
         checkType(l, 2, out a1);
         self.RemoveSymbol(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of UIFont::RemoveSymbol